Skip to content

Commit

Permalink
added vulnerabilities too README.MD
Browse files Browse the repository at this point in the history
  • Loading branch information
AlaBouali committed Sep 24, 2023
1 parent bd203f8 commit b2405fd
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 5 deletions.
38 changes: 35 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,15 @@ II-Usage (General usage or read the <a href='https://github.com/AlaBouali/bane/w
</pre></div><h4>Exposed "/.env" File:</h4>

<div style="background: #f8f8f8; overflow:auto;width:auto;border:solid gray;border-width:.1em .1em .1em .8em;padding:.2em .6em;"><pre style="margin: 0; line-height: 125%">bane.exposed_env(link , timeout=15 )
</pre></div><h4>Exposed "/.git" File:</h4>

<div style="background: #f8f8f8; overflow:auto;width:auto;border:solid gray;border-width:.1em .1em .1em .8em;padding:.2em .6em;"><pre style="margin: 0; line-height: 125%">bane.exposed_git(link , timeout=15 )
</pre></div><h4>Sniffable links via network:</h4>

<div style="background: #f8f8f8; overflow:auto;width:auto;border:solid gray;border-width:.1em .1em .1em .8em;padding:.2em .6em;"><pre style="margin: 0; line-height: 125%">bane.interceptable_links(link , timeout=15 )
</pre></div><h4>Springboot actuator:</h4>

<div style="background: #f8f8f8; overflow:auto;width:auto;border:solid gray;border-width:.1em .1em .1em .8em;padding:.2em .6em;"><pre style="margin: 0; line-height: 125%">bane.springboot_actuator(link , timeout=15 )

</pre></div><h4>Vulners API Search for known vulnerabilities on a particular software:</h4>

Expand Down Expand Up @@ -335,12 +344,35 @@ II-Usage (General usage or read the <a href='https://github.com/AlaBouali/bane/w
<div style="background: #f8f8f8; overflow:auto;width:auto;border:solid gray;border-width:.1em .1em .1em .8em;padding:.2em .6em;"><pre style="margin: 0; line-height: 125%">bane.slow_read(IP, p= port , duration= 300 , set_tor=False , threads=500 , timeout=5 )
</pre></div>

# WordPress testing:
# Backend technologies scan:


<h4>Full scan:</h4>
<div style="background: #f8f8f8; overflow:auto;width:auto;border:solid gray;border-width:.1em .1em .1em .8em;padding:.2em .6em;"><pre style="margin: 0; line-height: 125%">bane.scan_backend_technology(link , timeout=15 )
</pre></div>


# CMS testing:

<h4>WordPress scan:</h4>

<div style="background: #f8f8f8; overflow:auto;width:auto;border:solid gray;border-width:.1em .1em .1em .8em;padding:.2em .6em;"><pre style="margin: 0; line-height: 125%">bane.get_wp_infos(link , timeout=15 )
</pre></div>
<h4>Drupal scan:</h4>

<div style="background: #f8f8f8; overflow:auto;width:auto;border:solid gray;border-width:.1em .1em .1em .8em;padding:.2em .6em;"><pre style="margin: 0; line-height: 125%">bane.get_drupal_infos(link , timeout=15 )
</pre></div>
<h4>Joomla scan:</h4>

<div style="background: #f8f8f8; overflow:auto;width:auto;border:solid gray;border-width:.1em .1em .1em .8em;padding:.2em .6em;"><pre style="margin: 0; line-height: 125%">bane.get_joomla_infos(link , timeout=15 )
</pre></div>
<h4>Magento scan:</h4>

<div style="background: #f8f8f8; overflow:auto;width:auto;border:solid gray;border-width:.1em .1em .1em .8em;padding:.2em .6em;"><pre style="margin: 0; line-height: 125%">bane.get_magento_infos(link , timeout=15 )
</pre></div>


# WordPress testing:



<h4>Users list:</h4>
Expand Down Expand Up @@ -511,7 +543,7 @@ II-Usage (General usage or read the <a href='https://github.com/AlaBouali/bane/w
<div style="background: #f8f8f8; overflow:auto;width:auto;border:solid gray;border-width:.1em .1em .1em .8em;padding:.2em .6em;"><pre style="margin: 0; line-height: 125%">bane.port_scan( IP , ports=[21,22,23,25,43,53,80,443,2082,3306] , timeout=5 ).result
</pre></div><h4>Subdomains finder:</h4>

<div style="background: #f8f8f8; overflow:auto;width:auto;border:solid gray;border-width:.1em .1em .1em .8em;padding:.2em .6em;"><pre style="margin: 0; line-height: 125%">bane.subdomains_finder( domain )
<div style="background: #f8f8f8; overflow:auto;width:auto;border:solid gray;border-width:.1em .1em .1em .8em;padding:.2em .6em;"><pre style="margin: 0; line-height: 125%">bane.get_subdomains( domain )

</pre></div>

Expand Down
1 change: 0 additions & 1 deletion bane/scanners/cms/drupal.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ def get_drupal_infos(u,user_agent=None,cookie=None,timeout=10,proxy=None,logs=Tr
hed.update({"Cookie": cookie})
try:
response = requests.get(u, headers=hed, proxies=proxy, timeout=timeout, verify=False)
print(response.text.lower().split('<meta name="generator" content="drupal')[1].split('(')[0].strip())
version=response.text.lower().split('<meta name="generator" content="drupal')[1].split('(')[0].strip()
except Exception as ex:
raise(ex)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@

setuptools.setup(
name="bane",
version="4.8.5",
version="4.8.7",
author="AlaBouali",
author_email="[email protected]",
description="cyber security library, penetration testing module",
Expand Down

0 comments on commit b2405fd

Please sign in to comment.