summaryrefslogtreecommitdiff
path: root/contrib/splicex/src/deshadow.pyx
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/splicex/src/deshadow.pyx')
-rw-r--r--contrib/splicex/src/deshadow.pyx7
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")