From 182ded5db8fc70784254ff588368a7cbebdf62ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D2=89=CE=B1k=CE=B1=20x=E2=A0=A0=E2=A0=B5?= <32862241+4k4xs4pH1r3@users.noreply.github.com> Date: Wed, 21 Aug 2019 00:11:34 -0500 Subject: [PATCH 1/6] Update README.md --- README.md | 39 +++------------------------------------ 1 file changed, 3 insertions(+), 36 deletions(-) diff --git a/README.md b/README.md index 0c2dbc0..d749106 100644 --- a/README.md +++ b/README.md @@ -9,10 +9,10 @@ Sublist3r is a python tool designed to enumerate subdomains of websites using OS ![Sublist3r](http://www.secgeek.net/images/Sublist3r.png "Sublist3r in action") -## Installation +## Installation in Debian distros ``` -git clone https://github.com/aboul3la/Sublist3r.git +cd /usr/share && git clone https://github.com/aboul3la/Sublist3r.git && cd /usr/share/Sublist3r && chmod +x *.* && sudo pip install ebcdic && sudo pip3 install ebcdic && sudo pip install -r requirements.txt && python setup.py install ``` ## Recommended Python Version: @@ -32,10 +32,7 @@ These dependencies can be installed using the requirements file: ``` c:\python27\python.exe -m pip install -r requirements.txt ``` -- Installation on Linux -``` -sudo pip install -r requirements.txt -``` + Alternatively, each module can be installed independently as shown below. @@ -46,20 +43,11 @@ Alternatively, each module can be installed independently as shown below. c:\python27\python.exe -m pip install requests ``` -- Install for Ubuntu/Debian: -``` -sudo apt-get install python-requests -``` - - Install for Centos/Redhat: ``` sudo yum install python-requests ``` -- Install using pip on Linux: -``` -sudo pip install requests -``` #### dnspython Module (http://www.dnspython.org/) @@ -68,33 +56,12 @@ sudo pip install requests c:\python27\python.exe -m pip install dnspython ``` -- Install for Ubuntu/Debian: -``` -sudo apt-get install python-dnspython -``` - -- Install using pip: -``` -sudo pip install dnspython -``` - -#### argparse Module - -- Install for Ubuntu/Debian: -``` -sudo apt-get install python-argparse -``` - Install for Centos/Redhat: ``` sudo yum install python-argparse ``` -- Install using pip: -``` -sudo pip install argparse -``` - **for coloring in windows install the following libraries** ``` c:\python27\python.exe -m pip install win_unicode_console colorama From 2ea42ed8ce43c6fb4ad9580bc091cefacc6f34f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D2=89=CE=B1k=CE=B1=20x=E2=A0=A0=E2=A0=B5?= <32862241+4k4xs4pH1r3@users.noreply.github.com> Date: Wed, 21 Aug 2019 00:28:53 -0500 Subject: [PATCH 2/6] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d749106..0fda36e 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Sublist3r is a python tool designed to enumerate subdomains of websites using OS ## Installation in Debian distros ``` -cd /usr/share && git clone https://github.com/aboul3la/Sublist3r.git && cd /usr/share/Sublist3r && chmod +x *.* && sudo pip install ebcdic && sudo pip3 install ebcdic && sudo pip install -r requirements.txt && python setup.py install +cd /usr/share && git clone https://github.com/aboul3la/Sublist3r.git && cd /usr/share/Sublist3r && chmod +x *.* && sudo pip install ebcdic && sudo pip3 install ebcdic && sudo pip install -r requirements.txt && python setup.py install && cd && sublist3r ``` ## Recommended Python Version: From de83f8ff0ab0f1e4d328c710f3318ff825c8bcb9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D2=89=CE=B1k=CE=B1=20x=E2=A0=A0=E2=A0=B5?= <32862241+4k4xs4pH1r3@users.noreply.github.com> Date: Wed, 21 Aug 2019 00:32:54 -0500 Subject: [PATCH 3/6] Update README.md --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0fda36e..7ddcf3a 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,13 @@ Sublist3r is a python tool designed to enumerate subdomains of websites using OS ## Installation in Debian distros ``` -cd /usr/share && git clone https://github.com/aboul3la/Sublist3r.git && cd /usr/share/Sublist3r && chmod +x *.* && sudo pip install ebcdic && sudo pip3 install ebcdic && sudo pip install -r requirements.txt && python setup.py install && cd && sublist3r +cd /usr/share && git clone https://github.com/aboul3la/Sublist3r.git && cd /usr/share/Sublist3r && chmod +x *.* && sudo pip install ebcdic && sudo pip3 install ebcdic && sudo pip install -r requirements.txt && python setup.py install && cd +``` + +## Usage in Debian Distros + +``` +sublist3r -h ``` ## Recommended Python Version: From ae6bae6c119441237531733d01bae57ee5b02f3b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D2=89=CE=B1k=CE=B1=20x=E2=A0=A0=E2=A0=B5?= <32862241+4k4xs4pH1r3@users.noreply.github.com> Date: Wed, 21 Aug 2019 00:39:50 -0500 Subject: [PATCH 4/6] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7ddcf3a..5475a3a 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ cd /usr/share && git clone https://github.com/aboul3la/Sublist3r.git && cd /usr/ ## Usage in Debian Distros ``` -sublist3r -h +sublist3r -b -d yourdomain.com -t 37 -v -o /root/sublist3r_yourdomain_com ``` ## Recommended Python Version: From 088f49fe8f02deccef73797e3ed1f88b6270651b Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Tue, 13 Oct 2020 16:32:26 +0000 Subject: [PATCH 5/6] Create Dependabot config file --- .github/dependabot.yml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..491deae --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,7 @@ +version: 2 +updates: +- package-ecosystem: pip + directory: "/" + schedule: + interval: daily + open-pull-requests-limit: 10 From 9552437fb9b6a80d5fdfa4a5e7cd77037e21534d Mon Sep 17 00:00:00 2001 From: "whitesource-bolt-for-github[bot]" <42819689+whitesource-bolt-for-github[bot]@users.noreply.github.com> Date: Thu, 30 Dec 2021 07:57:56 +0000 Subject: [PATCH 6/6] Add .whitesource configuration file --- .whitesource | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .whitesource diff --git a/.whitesource b/.whitesource new file mode 100644 index 0000000..55b922e --- /dev/null +++ b/.whitesource @@ -0,0 +1,12 @@ +{ + "scanSettings": { + "baseBranches": [] + }, + "checkRunSettings": { + "vulnerableCheckRunConclusionLevel": "failure", + "displayMode": "diff" + }, + "issueSettings": { + "minSeverityLevel": "LOW" + } +} \ No newline at end of file