Skip to content

Commit 59bfb41

Browse files
committed
Dev-release v1.2
1 parent a777570 commit 59bfb41

11 files changed

+29
-22
lines changed

DomFu/__main__.py

+6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
#!/usr/bin/env python3
2+
'''
3+
Copyright (C) 2020, DomFu Contributors.
4+
See the LICENSE.txt file for copying permission.
5+
'''
26

37
import click
48
import time
@@ -67,6 +71,7 @@ def subdomain(domain, output, probe):
6771
vt_thread = Thread(target=lambda q, arg5: q.put(
6872
fetchVirusTotal(arg5)), args=(que5, domain))
6973

74+
# INIT: Don't try to loop this threads, it slows down the process --->
7075
crt_thread.start()
7176
bufferoverrun_thread.start()
7277
hackertarget_thread.start()
@@ -84,6 +89,7 @@ def subdomain(domain, output, probe):
8489
rhackertarget_thread = que3.get()
8590
rthreatcrowd_thread = que4.get()
8691
rvt_thread = que5.get()
92+
# End: Don't try to loop this threads, it slows down the process --->
8793

8894
yaspin().ok("[Done!] Asking ours spies about your subdomains")
8995

DomFu/modules/Probe/probe.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
Input: ['tropyl.com', 'www.tropyl.com', 'fake.tropyl.com']
88
Output: ['tropyl.com', 'www.tropyl.com']
99
10-
Copyright (C) 2020, Tropyl Team & Contributors.
10+
Copyright (C) 2020, DomFu Contributors.
1111
See the LICENSE.txt file for copying permission.
1212
'''
1313

DomFu/modules/Spies/BufferOverRun.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python3
22
'''
3-
Copyright (C) 2020, Tropyl Team & Contributors.
3+
Copyright (C) 2020, DomFu Contributors.
44
See the LICENSE.txt file for copying permission.
55
'''
66

DomFu/modules/Spies/HackerTarget.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python3
22
'''
3-
Copyright (C) 2020, Tropyl Team & Contributors.
3+
Copyright (C) 2020, DomFu Contributors.
44
See the LICENSE.txt file for copying permission.
55
'''
66

DomFu/modules/Spies/ThreatCrowd.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python3
22
'''
3-
Copyright (C) 2020, Tropyl Team & Contributors.
3+
Copyright (C) 2020, DomFu Contributors.
44
See the LICENSE.txt file for copying permission.
55
'''
66

DomFu/modules/Spies/VirusTotal.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python3
22
'''
3-
Copyright (C) 2020, Tropyl Team & Contributors.
3+
Copyright (C) 2020, DomFu Contributors.
44
See the LICENSE.txt file for copying permission.
55
'''
66

DomFu/modules/Spies/crtsh.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python3
22
'''
3-
Copyright (C) 2020, Tropyl Team & Contributors.
3+
Copyright (C) 2020, DomFu Contributors.
44
See the LICENSE.txt file for copying permission.
55
'''
66

DomFu/modules/Spies/subdomain.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python3
22
'''
3-
Copyright (C) 2020, Tropyl Team & Contributors.
3+
Copyright (C) 2020, DomFu Contributors.
44
See the LICENSE.txt file for copying permission.
55
'''
66

contributors.py

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
'''
2+
Copyright (C) 2020, DomFu Contributors.
3+
See the LICENSE.txt file for copying permission.
4+
'''
5+
6+
Contributors = [
7+
{
8+
"name": "Suman Basuli", "username": "TxSadhu"
9+
},
10+
]
11+
12+
'''
13+
If you are contributing to this project then add your name in the
14+
above list in your first PR.
15+
'''

contributors.txt

-14
This file was deleted.

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name='DomFu',
5-
version='1.1.0',
5+
version='1.2',
66
author='Suman Basuli',
77
author_email='thinisadhu@gmail.com',
88
packages=find_packages(),

0 commit comments

Comments
 (0)