diff options
author | d3v11 <d3v11@d3v11.ano> | 2011-10-29 10:17:30 -0400 |
---|---|---|
committer | d3v11 <d3v11@d3v11.ano> | 2011-10-29 10:17:30 -0400 |
commit | 81aab712cfe805dc00010cb2ff5761787d0a4050 (patch) | |
tree | 61b67ad7fd6bd307c63653082c7ab34e9b27f09d /contrib/splicex/src/deshadow.pyx | |
parent | e04f0562d401b1d44c49f8a03e73cd8fdd27c0d4 (diff) | |
download | resdb-81aab712cfe805dc00010cb2ff5761787d0a4050.tar.gz resdb-81aab712cfe805dc00010cb2ff5761787d0a4050.zip |
SpliceX update: pyinstall added
Diffstat (limited to 'contrib/splicex/src/deshadow.pyx')
-rw-r--r-- | contrib/splicex/src/deshadow.pyx | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/contrib/splicex/src/deshadow.pyx b/contrib/splicex/src/deshadow.pyx new file mode 100644 index 0000000..c8e11ec --- /dev/null +++ b/contrib/splicex/src/deshadow.pyx @@ -0,0 +1,7 @@ +#!PYTHON +import sys; sys.tracebacklimit = 0 +from crypt import crypt +TestHash = crypt(sys.argv[1], sys.argv[2]) +HashValue = sys.argv[3] +if TestHash.__contains__(HashValue): + print("SHADOW CRACKED") |