summaryrefslogtreecommitdiffstats
path: root/pyload/plugin/crypter/C1NeonCom.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyload/plugin/crypter/C1NeonCom.py')
-rw-r--r--pyload/plugin/crypter/C1NeonCom.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/pyload/plugin/crypter/C1NeonCom.py b/pyload/plugin/crypter/C1NeonCom.py
new file mode 100644
index 000000000..e0e1bda17
--- /dev/null
+++ b/pyload/plugin/crypter/C1NeonCom.py
@@ -0,0 +1,16 @@
+# -*- coding: utf-8 -*-
+
+from pyload.plugin.internal.DeadCrypter import DeadCrypter
+
+
+class C1NeonCom(DeadCrypter):
+ __name = "C1NeonCom"
+ __type = "crypter"
+ __version = "0.05"
+
+ __pattern = r'http://(?:www\.)?c1neon\.com/.+'
+ __config = []
+
+ __description = """C1neon.com decrypter plugin"""
+ __license = "GPLv3"
+ __authors = [("godofdream", "soilfiction@gmail.com")]