Commit Graph

30 Commits

Author SHA1 Message Date
Ibrahim 7b1657e3df modyfing verbose to be local variable not global, adding silent variable, sublister can be used as API by simply importing and calling main 2016-10-21 11:01:32 +01:00
Michael Madden a006a739b1 Fix indentation that contains mixed spaces and tabs. 2016-10-18 15:08:07 -05:00
Michael Madden c9887e64ba Remove unneeded pass
Change "not 'Next page' in resp" to "'Next page' not in resp"

Change s.close to to s.close()
2016-10-18 14:02:00 -05:00
Michael Madden 0f714a9d09 Removed unused variables & imports. 2016-10-14 10:35:35 -05:00
Jeremy Nation 09a2b9cdaf Modify subdomain sorting 2016-10-02 22:57:52 +00:00
Nathan Walsh 7ebc72f237 fix typo 2016-09-27 00:37:38 -04:00
Ahmed Aboul-Ela 31f4a5190e Fixed bug in PassiveDNS 2016-07-17 03:43:12 +02:00
robin ff6b78a869 Removes duplicates due to white space at the end of the string. 2016-07-15 20:30:22 +12:00
Ahmed Aboul-Ela 85d2d1cab5 Fixed issue #21 2016-07-08 06:25:56 +02:00
the_storm a6c55a0a0c Fixing using local variable before assignemnt 2016-07-05 17:50:32 +01:00
the_storm e78c34b52e Adding Threatcrowd passive DNS lookup 2016-07-05 17:37:21 +01:00
Ahmed Aboul-Ela fbaf7e8128 Fixed Sublist3r v1.0 on Windows Platform 2016-07-05 11:18:24 +02:00
Ahmed Aboul-Ela b8795dcdcf Fixed bug in the verbose mode 2016-07-04 15:24:43 +02:00
Ahmed Aboul-Ela 270c779f5c Updated to version 1.0 2016-07-04 14:34:59 +02:00
Ahmed Aboul-Ela db5e203f79 Updated version 1.0 2016-07-04 14:31:12 +02:00
Ahmed Aboul-Ela cb3467a48b Fixed bug in Netcraft 2016-06-20 01:31:36 +02:00
Guido Iaquinti f377f79521 Handle DNSdumpster null results 2016-06-12 12:22:29 +01:00
Glenn Vandamme b6f1597713 Support exotic tld's 2016-06-10 14:08:27 +02:00
Robin Lennox 69d98b1937 Sort found subdomains. 2016-01-19 17:39:33 +13:00
Ahmed Aboul-Ela a3aa220046 Update sublist3r.py to work with older requests lib versions 2015-12-25 07:54:46 +02:00
Ahmed Aboul-Ela 1da8dc566a Fixed a typo in comments 2015-12-18 09:39:22 +02:00
Ahmed Aboul-Ela 65ba4923fa Fixed bugs with Baidu and Yahoo 2015-12-18 09:09:09 +02:00
Ahmed Aboul-Ela ff641efe56 Updated sublist3r.py 2015-12-16 23:58:50 +02:00
Ahmed Aboul-Ela 4dea5ce6fd Fixed typo in Banner 2015-12-16 23:25:21 +02:00
Ahmed Aboul-Ela 61abd7dc01 Updated sublist3r.py 2015-12-16 23:22:19 +02:00
Ahmed Aboul-Ela 13feabda83 Merge pull request #2 from cclauss/patch-1
Avoid [] or {} as default value for function params
2015-12-16 23:04:48 +02:00
cclauss 3ade887acf Update sublist3r.py 2015-12-16 21:56:40 +01:00
cclauss cc2d9578bf Avoid [] or {} as default value for function params
This is a great idea with a slick implementation.

__I made these mods on a train journey without the ability to test them!__  I believe them to be correct but please run the app to make sure that IGot it right.

Here is why you should avoid [] or {} as default value for function params:

```python
def func0(subdomains=[]):
    print('before', subdomains)
    subdomains.append(1)
    print(' after', subdomains)

func0()
func0()

print('-' * 10)

def func1(subdomains=None):
    subdomains = subdomains or []
    print('before', subdomains)
    subdomains.append(1)
    print(' after', subdomains)

func1()
func1()
print('')
```
2015-12-16 07:54:31 +01:00
Med Amine Ben Asker bca4b19092 Fix the SSL warning for those who cannot install some of the required development packages 2015-12-15 19:50:19 +01:00
Ahmed Aboul-Ela 2446dc3877 initial commit 2015-12-15 15:31:23 +02:00