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

Commit b5330ff

Browse files
committed
Update for v1.0.8 release.
1 parent ae95554 commit b5330ff

13 files changed

+77
-13
lines changed

README.md

+23-2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Command-line utility for using websites that can perform port scans on your beha
1212
* [pingeu](http://ping.eu/port-chk/)
1313
* [spiderip](https://spiderip.com/online-port-scan.php)
1414
* [t1shopper](http://www.t1shopper.com/tools/port-scan/)
15+
* [standingtech](https://portscanner.standingtech.com/)
1516

1617
## Install
1718

@@ -23,13 +24,14 @@ $ sudo pip install scanless
2324
## Usage
2425

2526
```
26-
$ scanless --help
27-
usage: scanless [-h] [-t TARGET] [-s SCANNER] [-l] [-a]
27+
$ scanless --help
28+
usage: scanless [-h] [-v] [-t TARGET] [-s SCANNER] [-r] [-l] [-a]
2829
2930
scanless, public port scan scrapper
3031
3132
optional arguments:
3233
-h, --help show this help message and exit
34+
-v, --version display the current version
3335
-t TARGET, --target TARGET
3436
ip or domain to scan
3537
-s SCANNER, --scanner SCANNER
@@ -48,6 +50,7 @@ ipfingerprints | http://www.ipfingerprints.com
4850
pingeu | http://ping.eu
4951
spiderip | https://spiderip.com
5052
t1shopper | http://www.t1shopper.com
53+
standingtech | https://portscanner.standingtech.com
5154
5255
$ scanless -t scanme.nmap.org -s ipfingerprints
5356
Running scanless...
@@ -197,4 +200,22 @@ PORT STATE SERVICE
197200
5900/tcp closed vnc
198201
8080/tcp closed http-alt
199202
-------------------------
203+
204+
------- standingtech -------
205+
PORT STATE SERVICE
206+
21/tcp closed ftp
207+
22/tcp open ssh
208+
23/tcp closed telnet
209+
25/tcp closed smtp
210+
80/tcp open http
211+
110/tcp closed pop3
212+
139/tcp closed netbios
213+
143/tcp closed imap
214+
443/tcp closed https
215+
445/tcp closed smb
216+
1433/tcp closed mssql
217+
3306/tcp closed mysql
218+
3389/tcp closed rdp
219+
5900/tcp closed vnc
220+
----------------------------
200221
```

scanless/__init__.py

+11-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,11 @@
1-
__version__ = '1.0.7'
1+
# -*- coding: utf-8 -*-
2+
3+
# _____ __ ____ ____ _ ___ _____ _____
4+
# / ___/ / ] / || \ | | / _]/ ___// ___/
5+
# ( \_ / / | o || _ || | / [_( \_( \_
6+
# \__ |/ / | || | || |___ | _]\__ |\__ |
7+
# / \ / \_ | _ || | || || [_ / \ |/ \ |
8+
# \ \ || | || | || || |\ |\ |
9+
# \___|\____||__|__||__|__||_____||_____| \___| \___|
10+
11+
__version__ = '1.0.8'

scanless/scanless.py

+10-7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/usr/bin/env python
2+
# -*- coding: utf-8 -*-
23

34
#
45
# scanless - public port scan scrapper
@@ -22,14 +23,16 @@
2223
pingeu | http://ping.eu
2324
spiderip | https://spiderip.com
2425
t1shopper | http://www.t1shopper.com
26+
standingtech | https://portscanner.standingtech.com
2527
'''
26-
SCANNERS = { 'yougetsignal': yougetsignal,
27-
'viewdns': viewdns,
28-
'hackertarget': hackertarget,
29-
'ipfingerprints': ipfingerprints,
30-
'pingeu': pingeu,
31-
'spiderip': spiderip,
32-
't1shopper': t1shopper }
28+
SCANNERS = { 'yougetsignal': yougetsignal,
29+
'viewdns': viewdns,
30+
'hackertarget': hackertarget,
31+
'ipfingerprints': ipfingerprints,
32+
'pingeu': pingeu,
33+
'spiderip': spiderip,
34+
't1shopper': t1shopper,
35+
'standingtech': standingtech }
3336

3437

3538
def scanless(target, scanner):

scanless/scanners/__init__.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
1+
# -*- coding: utf-8 -*-
2+
13
__all__ = [ 'hackertarget', 'ipfingerprints', 'pingeu', 'portcheckers',
2-
'spiderip', 'viewdns', 'yougetsignal', 't1shopper' ]
4+
'spiderip', 'standingtech', 'viewdns', 'yougetsignal', 't1shopper' ]

scanless/scanners/hackertarget.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# -*- coding: utf-8 -*-
2+
13
#
24
# scanless hackertarget module
35
# https://github.com/vesche/scanless

scanless/scanners/ipfingerprints.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# -*- coding: utf-8 -*-
2+
13
#
24
# scanless ipfingerprints module
35
# https://github.com/vesche/scanless

scanless/scanners/pingeu.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# -*- coding: utf-8 -*-
2+
13
#
24
# scanless pingeu module
35
# https://github.com/vesche/scanless

scanless/scanners/portcheckers.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# -*- coding: utf-8 -*-
2+
13
#
24
# scanless portcheckers module
35
# https://github.com/vesche/scanless

scanless/scanners/spiderip.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# -*- coding: utf-8 -*-
2+
13
#
24
# scanless spiderip module
35
# https://github.com/vesche/scanless

scanless/scanners/t1shopper.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# -*- coding: utf-8 -*-
2+
13
#
24
# scanless t1shopper module
35
# https://github.com/vesche/scanless

scanless/scanners/viewdns.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# -*- coding: utf-8 -*-
2+
13
#
24
# scanless viewdns module
35
# https://github.com/vesche/scanless

scanless/scanners/yougetsignal.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# -*- coding: utf-8 -*-
2+
13
#
24
# scanless yougetsignal module
35
# https://github.com/vesche/scanless

setup.py

+14-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/usr/bin/env python
2+
# -*- coding: utf-8 -*-
23

34
from setuptools import setup
45
from scanless import __version__
@@ -17,5 +18,16 @@
1718
'scanless = scanless.scanless:main',
1819
]
1920
},
20-
install_requires=['beautifulsoup4', 'requests']
21-
)
21+
install_requires=['beautifulsoup4', 'requests'],
22+
classifiers=[
23+
"Development Status :: 5 - Production/Stable",
24+
"Environment :: Console",
25+
"Intended Audience :: Information Technology",
26+
"License :: OSI Approved :: MIT License",
27+
"Programming Language :: Python :: 2",
28+
"Programming Language :: Python :: 2.7",
29+
"Programming Language :: Python :: 3",
30+
"Programming Language :: Python :: 3.6",
31+
"Topic :: Security"
32+
]
33+
)

0 commit comments

Comments
 (0)