├── web ├── static │ ├── robots.txt │ ├── logo.png │ ├── favicon.ico │ ├── netscape3.gif │ ├── Peter_Sellers.jpg │ └── new.css ├── templates │ ├── 404.html │ ├── main.html │ ├── test.user.html │ ├── page_for_listings_main.html │ ├── new.html │ ├── nmapips.html │ ├── portlist.html │ ├── screens.html │ ├── servicelist.html │ ├── nmapout.html │ ├── all_users.html │ ├── user_info.html │ ├── footer.html │ ├── tree.html │ ├── tree_user.html │ ├── users_sort_by_total.html │ ├── users_with_2p_ip.html │ ├── port_search.html │ ├── iplist.html │ ├── ip_info.html │ ├── tables.html │ ├── about.html │ └── header.html └── serv.py ├── outputdata.py ├── test ├── nmap.to.mysql.py ├── config.ini ├── sqlclass.py ├── rdnsthings.py ├── sshrank.py ├── README.md └── LICENSE /web/static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: /ssh_rank/* 3 | -------------------------------------------------------------------------------- /web/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pronto/SSH-Ranking/HEAD/web/static/logo.png -------------------------------------------------------------------------------- /web/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pronto/SSH-Ranking/HEAD/web/static/favicon.ico -------------------------------------------------------------------------------- /web/static/netscape3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pronto/SSH-Ranking/HEAD/web/static/netscape3.gif -------------------------------------------------------------------------------- /web/static/Peter_Sellers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pronto/SSH-Ranking/HEAD/web/static/Peter_Sellers.jpg -------------------------------------------------------------------------------- /web/templates/404.html: -------------------------------------------------------------------------------- 1 | {% include 'header.html' %} 2 |
404'd bro.
3 | {% include 'footer.html' %} 4 | -------------------------------------------------------------------------------- /web/templates/main.html: -------------------------------------------------------------------------------- 1 | {% include 'header.html' %} 2 |lets rank things
3 | 4 | {% include 'footer.html'%} 5 | -------------------------------------------------------------------------------- /web/templates/test.user.html: -------------------------------------------------------------------------------- 1 | {% include 'header.html' %} 2 | {% for user in user_list -%} {{ user }}, {% endfor -%} 3 | -------------------------------------------------------------------------------- /web/templates/page_for_listings_main.html: -------------------------------------------------------------------------------- 1 | 2 | {% include 'header.html' %} 3 | 4 | {% include 'tables.html' %} 5 | {% include 'footer.html'%} 6 | -------------------------------------------------------------------------------- /web/templates/new.html: -------------------------------------------------------------------------------- 1 | {% include 'header.html' %} 2 | 3 |
5 | {% for serv in servlist -%}
6 | {{serv[0]}}:{{serv[1]}}
7 | {% endfor %}
8 |
9 |
10 | {% include 'footer.html' %}
11 |
--------------------------------------------------------------------------------
/web/templates/nmapout.html:
--------------------------------------------------------------------------------
1 | {% include 'header.html' %}
2 |
3 |
4 | {{ url_for('static', filename=xmlfile) }}
5 | {% autoescape False %}
6 | {{ showxml }}
7 | {% endautoescape %}
8 |
9 | {% include 'footer.html' %}
10 |
--------------------------------------------------------------------------------
/web/templates/all_users.html:
--------------------------------------------------------------------------------
1 | {% include 'header.html' %}
2 | {% for letter,userlist in users|groupby(0) -%}
3 | IP's that have used this user name:
7 |{% for ip in other_ips -%} {{ ip }}, {% endfor -%}
8 | {%include 'footer.html' %}
9 |
--------------------------------------------------------------------------------
/web/templates/footer.html:
--------------------------------------------------------------------------------
1 |
2 |
6 |
11 |
12 |
13 |