-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
enable import from directory without installation
- Loading branch information
Showing
10 changed files
with
37 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
import requests, random, json, sys,socket | ||
import urllib3,time | ||
from bane.scanners.vulnerabilities.vulns import Vulners_Search_Scanner,Mixed_Content_Scanner,ClickJacking_Scanner,Vulnerability_Scanner_Utilities | ||
from bane.gather_info.info_s import * | ||
from ...scanners.vulnerabilities.vulns import Vulners_Search_Scanner,Mixed_Content_Scanner,ClickJacking_Scanner,Vulnerability_Scanner_Utilities | ||
from ...gather_info.info_s import * | ||
|
||
urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) | ||
from bane.common.payloads import * | ||
from ...common.payloads import * | ||
|
||
if sys.version_info < (3, 0): | ||
from urlparse import urlparse | ||
else: | ||
from urllib.parse import urlparse | ||
|
||
from bs4 import BeautifulSoup | ||
from bane.utils.proxer import * | ||
from bane.gather_info.ips import * | ||
from ...utils.proxer import * | ||
from ...gather_info.ips import * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import requests, socks, socket, random, re,os,sys,threading,ssl | ||
import bs4,bane,json | ||
from bs4 import BeautifulSoup | ||
from bane.common.payloads import * | ||
from ...common.payloads import * | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters