Skip to content
This repository has been archived by the owner on Aug 7, 2023. It is now read-only.

Commit

Permalink
Update for v1.0.8 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
vesche committed May 6, 2018
1 parent ae95554 commit b5330ff
Show file tree
Hide file tree
Showing 13 changed files with 77 additions and 13 deletions.
25 changes: 23 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ Command-line utility for using websites that can perform port scans on your beha
* [pingeu](http://ping.eu/port-chk/)
* [spiderip](https://spiderip.com/online-port-scan.php)
* [t1shopper](http://www.t1shopper.com/tools/port-scan/)
* [standingtech](https://portscanner.standingtech.com/)

## Install

Expand All @@ -23,13 +24,14 @@ $ sudo pip install scanless
## Usage

```
$ scanless --help
usage: scanless [-h] [-t TARGET] [-s SCANNER] [-l] [-a]
$ scanless --help
usage: scanless [-h] [-v] [-t TARGET] [-s SCANNER] [-r] [-l] [-a]
scanless, public port scan scrapper
optional arguments:
-h, --help show this help message and exit
-v, --version display the current version
-t TARGET, --target TARGET
ip or domain to scan
-s SCANNER, --scanner SCANNER
Expand All @@ -48,6 +50,7 @@ ipfingerprints | http://www.ipfingerprints.com
pingeu | http://ping.eu
spiderip | https://spiderip.com
t1shopper | http://www.t1shopper.com
standingtech | https://portscanner.standingtech.com
$ scanless -t scanme.nmap.org -s ipfingerprints
Running scanless...
Expand Down Expand Up @@ -197,4 +200,22 @@ PORT STATE SERVICE
5900/tcp closed vnc
8080/tcp closed http-alt
-------------------------
------- standingtech -------
PORT STATE SERVICE
21/tcp closed ftp
22/tcp open ssh
23/tcp closed telnet
25/tcp closed smtp
80/tcp open http
110/tcp closed pop3
139/tcp closed netbios
143/tcp closed imap
443/tcp closed https
445/tcp closed smb
1433/tcp closed mssql
3306/tcp closed mysql
3389/tcp closed rdp
5900/tcp closed vnc
----------------------------
```
12 changes: 11 additions & 1 deletion scanless/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,11 @@
__version__ = '1.0.7'
# -*- coding: utf-8 -*-

# _____ __ ____ ____ _ ___ _____ _____
# / ___/ / ] / || \ | | / _]/ ___// ___/
# ( \_ / / | o || _ || | / [_( \_( \_
# \__ |/ / | || | || |___ | _]\__ |\__ |
# / \ / \_ | _ || | || || [_ / \ |/ \ |
# \ \ || | || | || || |\ |\ |
# \___|\____||__|__||__|__||_____||_____| \___| \___|

__version__ = '1.0.8'
17 changes: 10 additions & 7 deletions scanless/scanless.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

#
# scanless - public port scan scrapper
Expand All @@ -22,14 +23,16 @@
pingeu | http://ping.eu
spiderip | https://spiderip.com
t1shopper | http://www.t1shopper.com
standingtech | https://portscanner.standingtech.com
'''
SCANNERS = { 'yougetsignal': yougetsignal,
'viewdns': viewdns,
'hackertarget': hackertarget,
'ipfingerprints': ipfingerprints,
'pingeu': pingeu,
'spiderip': spiderip,
't1shopper': t1shopper }
SCANNERS = { 'yougetsignal': yougetsignal,
'viewdns': viewdns,
'hackertarget': hackertarget,
'ipfingerprints': ipfingerprints,
'pingeu': pingeu,
'spiderip': spiderip,
't1shopper': t1shopper,
'standingtech': standingtech }


def scanless(target, scanner):
Expand Down
4 changes: 3 additions & 1 deletion scanless/scanners/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
# -*- coding: utf-8 -*-

__all__ = [ 'hackertarget', 'ipfingerprints', 'pingeu', 'portcheckers',
'spiderip', 'viewdns', 'yougetsignal', 't1shopper' ]
'spiderip', 'standingtech', 'viewdns', 'yougetsignal', 't1shopper' ]
2 changes: 2 additions & 0 deletions scanless/scanners/hackertarget.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# -*- coding: utf-8 -*-

#
# scanless hackertarget module
# https://github.com/vesche/scanless
Expand Down
2 changes: 2 additions & 0 deletions scanless/scanners/ipfingerprints.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# -*- coding: utf-8 -*-

#
# scanless ipfingerprints module
# https://github.com/vesche/scanless
Expand Down
2 changes: 2 additions & 0 deletions scanless/scanners/pingeu.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# -*- coding: utf-8 -*-

#
# scanless pingeu module
# https://github.com/vesche/scanless
Expand Down
2 changes: 2 additions & 0 deletions scanless/scanners/portcheckers.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# -*- coding: utf-8 -*-

#
# scanless portcheckers module
# https://github.com/vesche/scanless
Expand Down
2 changes: 2 additions & 0 deletions scanless/scanners/spiderip.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# -*- coding: utf-8 -*-

#
# scanless spiderip module
# https://github.com/vesche/scanless
Expand Down
2 changes: 2 additions & 0 deletions scanless/scanners/t1shopper.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# -*- coding: utf-8 -*-

#
# scanless t1shopper module
# https://github.com/vesche/scanless
Expand Down
2 changes: 2 additions & 0 deletions scanless/scanners/viewdns.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# -*- coding: utf-8 -*-

#
# scanless viewdns module
# https://github.com/vesche/scanless
Expand Down
2 changes: 2 additions & 0 deletions scanless/scanners/yougetsignal.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# -*- coding: utf-8 -*-

#
# scanless yougetsignal module
# https://github.com/vesche/scanless
Expand Down
16 changes: 14 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

from setuptools import setup
from scanless import __version__
Expand All @@ -17,5 +18,16 @@
'scanless = scanless.scanless:main',
]
},
install_requires=['beautifulsoup4', 'requests']
)
install_requires=['beautifulsoup4', 'requests'],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Topic :: Security"
]
)

0 comments on commit b5330ff

Please sign in to comment.