]> git.nothing2do.fr Git - get-hack-src.git/commitdiff
Tweet tweet! first commit!
authorallfro <ndouba@gmail.com>
Tue, 9 Oct 2012 21:03:23 +0000 (17:03 -0400)
committerallfro <ndouba@gmail.com>
Tue, 9 Oct 2012 21:03:23 +0000 (17:03 -0400)
14 files changed:
src/canari/commands/run_server.py
src/canari/framework.py
src/canari/maltego/utils.py
src/canari/resource.py
src/canari/resources/__init__.py
src/canari/resources/etc/__init__.py
src/canari/resources/template/README.plate
src/canari/resources/template/__init__.py
src/canari/utils/__init__.py
src/canari/utils/fs.py
src/canari/utils/wordlist.py
src/canari/xmltools/__init__.py
src/scripts/__init__.py
src/scripts/pysudo

index 9120833f7e75e03fb7a3addc2d5fee24d571bcee..5508b538e47316ed754454d0c03d4b6a8d60a254 100644 (file)
@@ -18,7 +18,7 @@ from re import sub
 
 
 __author__ = 'Nadeem Douba'
-__copyright__ = 'Copyright 2012, Sploitego Project'
+__copyright__ = 'Copyright 2012, Canari Project'
 __credits__ = []
 
 __license__ = 'GPL'
@@ -120,7 +120,7 @@ def croak(error_msg, r):
 class MaltegoTransformRequestHandler(BaseHTTPRequestHandler):
 
     protocol_version = 'HTTP/1.1'
-    server_version = 'Sploitego/1.0'
+    server_version = 'Canari/1.0'
     count = 0
 
 
@@ -198,7 +198,7 @@ class SecureMaltegoHTTPServer(HTTPServer):
         HTTPServer.__init__(self, server_address, RequestHandlerClass, bind_and_activate=bind_and_activate)
         self.socket = wrap_socket(self.socket, server_side=True, certfile=cert, cert_reqs=CERT_NONE)
         self.transforms = transforms
-        self.server_name = 'Sploitego'
+        self.server_name = 'Canari'
 
 
 class MaltegoHTTPServer(HTTPServer):
index 10ca21a49f2f9af263bf77146c16351a679d3e14..9fa20e0484ac276ea27096acc4d185d77c19f8a4 100644 (file)
@@ -1,7 +1,7 @@
 #!/usr/bin/env python
 
 __author__ = 'Nadeem Douba'
-__copyright__ = 'Copyright 2012, Sploitego Project'
+__copyright__ = 'Copyright 2012, Canari Project'
 __credits__ = []
 
 __license__ = 'GPL'
index 72090b2609b96650d39c268668522d14dd91bf58..d811ea2a5d48337315e4448c2bf8d17ab530db00 100644 (file)
@@ -9,7 +9,7 @@ from re import split, sub
 
 
 __author__ = 'Nadeem Douba'
-__copyright__ = 'Copyright 2012, Sploitego Project'
+__copyright__ = 'Copyright 2012, Canari Project'
 __credits__ = []
 
 __license__ = 'GPL'
index b0bdb0f54d4ae20b8ba18f454ee3e8793a66a864..af8d44a16eec60f9cca539e7d019c941ec748ecf 100644 (file)
@@ -4,7 +4,7 @@ from pkg_resources import resource_filename
 
 
 __author__ = 'Nadeem Douba'
-__copyright__ = 'Copyright 2012, Sploitego Project'
+__copyright__ = 'Copyright 2012, Canari Project'
 __credits__ = []
 
 __license__ = 'GPL'
index bfdf3516bd3d6c1c33e7fde883b406b5b127d030..3cc3b817db4347bc703717447bdf2c8794561aab 100644 (file)
@@ -1,7 +1,7 @@
 #!/usr/bin/env python
 
 __author__ = 'Nadeem Douba'
-__copyright__ = 'Copyright 2012, Sploitego Project'
+__copyright__ = 'Copyright 2012, Canari Project'
 __credits__ = []
 
 __license__ = 'GPL'
index b6afa10bb6967b426fb0783f401d5f9ba2a54ddd..3f733cb429cf764f483e3c4a7e524847dc3a3076 100644 (file)
@@ -1,7 +1,7 @@
 #!/usr/bin/env python
 
 __author__ = 'Nadeem Douba'
-__copyright__ = 'Copyright 2012, Sploitego Project'
+__copyright__ = 'Copyright 2012, Canari Project'
 __credits__ = []
 
 __license__ = 'GPL'
index bbbff8d03679865d39474d36781ab59dbd108b96..c5e30f4dcd97b917a7a75b98f291c2e04a673788 100644 (file)
@@ -1,6 +1,6 @@
 # README - ${project}
 
-Welcome to Sploitego. You might be wondering what all these files are about. Before you can use the power of
+Welcome to Canari. You might be wondering what all these files are about. Before you can use the power of
 ```mtginstall``` you needed to create a transform package and that's exactly what you did here! I've given you a
 directory structure to use in the following manner:
 
index b6afa10bb6967b426fb0783f401d5f9ba2a54ddd..3f733cb429cf764f483e3c4a7e524847dc3a3076 100644 (file)
@@ -1,7 +1,7 @@
 #!/usr/bin/env python
 
 __author__ = 'Nadeem Douba'
-__copyright__ = 'Copyright 2012, Sploitego Project'
+__copyright__ = 'Copyright 2012, Canari Project'
 __credits__ = []
 
 __license__ = 'GPL'
index 978890c173051f789caa24c8395542042c9a7ca9..c6a5f9ed99f4a6513b170b985c6ca5c03c4aabc7 100644 (file)
@@ -1,7 +1,7 @@
 #!/usr/bin/env python
 
 __author__ = 'Nadeem Douba'
-__copyright__ = 'Copyright 2012, Sploitego Project'
+__copyright__ = 'Copyright 2012, Canari Project'
 __credits__ = []
 
 __license__ = 'GPL'
index db1ad756759ec9550448807a02e6946eef25dc3a..fc7e4a524b5423fb8f1879145722489a2d275a80 100644 (file)
@@ -14,7 +14,7 @@ else:
 
 
 __author__ = 'Nadeem Douba'
-__copyright__ = 'Copyright 2012, Sploitego Project'
+__copyright__ = 'Copyright 2012, Canari Project'
 __credits__ = []
 
 __license__ = 'GPL'
index 9d734fc8baa32fca64f74b228f6a285baff0d933..fa21f0fad749d2f2208f2174c5e00db457052650 100644 (file)
@@ -5,7 +5,7 @@ from re import findall, search, sub
 from urllib import urlopen
 
 __author__ = 'Nadeem Douba'
-__copyright__ = 'Copyright 2012, Sploitego Project'
+__copyright__ = 'Copyright 2012, Canari Project'
 __credits__ = []
 
 __license__ = 'GPL'
index 1add1a62b974beccc6a8f92a1b714d01bc437da7..e259919068d732d207ffe0a8c55e35391c256914 100644 (file)
@@ -1,7 +1,7 @@
 #!/usr/bin/env python
 
 __author__ = 'Nadeem Douba'
-__copyright__ = 'Copyright 2012, Sploitego Project'
+__copyright__ = 'Copyright 2012, Canari Project'
 __credits__ = []
 
 __license__ = 'GPL'
index 666a4f2b62e0a2b1cca66e1d70a748caaef7a05b..2aef7ef7a17df524320994ec476377137111ce77 100644 (file)
@@ -1,7 +1,7 @@
 #!/usr/bin/env python
 
 __author__ = 'Nadeem Douba'
-__copyright__ = 'Copyright 2012, Sploitego Project'
+__copyright__ = 'Copyright 2012, Canari Project'
 __credits__ = ['Nadeem Douba']
 
 __license__ = 'GPL'
index 30b59033b66f657211c3fee351e254ce23054d0d..e0b48a9181e6de9f450b494a103dc7716bdc23db 100755 (executable)
@@ -9,7 +9,7 @@ from os import execvp
 
 
 __author__ = 'Nadeem Douba'
-__copyright__ = 'Copyright 2012, Sploitego Project'
+__copyright__ = 'Copyright 2012, Canari Project'
 __credits__ = []
 
 __license__ = 'GPL'