-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fc7de27
commit 4b9bfde
Showing
1 changed file
with
52 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,54 @@ | ||
# PyTCPScan | ||
Repository for a PyTCPScan application. | ||
|
||
PyTCPScan consiste em uma aplicação GNU/Linux para executar scaner de portas simples, onde o teste será | ||
direcionado para uma única porta, isto é bom pois dá mais controle ao usuário e faz menos barulho de log | ||
no alvo especificado. | ||
|
||
Esta é a versão 1.0 (beta) e está em fase de desenvolvimento. O código-fonte é aberto e aceita contribuição. | ||
|
||
--- | ||
|
||
OBS.: Para usar como executável, lembrar de dar permissão de execução | ||
**sudo chmod +x pytcpscan.py | ||
|
||
## Execução ./pytcpscan | ||
``` | ||
██████╗ ██╗ ██╗████████╗ ██████╗██████╗ ███████╗ ██████╗ █████╗ ███╗ ██╗ | ||
██╔══██╗╚██╗ ██╔╝╚══██╔══╝██╔════╝██╔══██╗██╔════╝██╔════╝██╔══██╗████╗ ██║ | ||
██████╔╝ ╚████╔╝ ██║ ██║ ██████╔╝███████╗██║ ███████║██╔██╗ ██║ | ||
██╔═══╝ ╚██╔╝ ██║ ██║ ██╔═══╝ ╚════██║██║ ██╔══██║██║╚██╗██║ | ||
██║ ██║ ██║ ╚██████╗██║ ███████║╚██████╗██║ ██║██║ ╚████║ | ||
╚═╝ ╚═╝ ╚═╝ ╚═════╝╚═╝ ╚══════╝ ╚═════╝╚═╝ ╚═╝╚═╝ ╚═══╝ | ||
Enter target host: google.com | ||
Enter target port: 80 | ||
---Start scan--- | ||
HTTP/1.1 301 Moved Permanently | ||
Location: http://www.google.com/ | ||
Content-Type: text/html; charset=UTF-8 | ||
Date: Thu, 29 Aug 2019 00:42:43 GMT | ||
Expires: Sat, 28 Sep 2019 00:42:43 GMT | ||
Cache-Control: public, max-age=2592000 | ||
Server: gws | ||
Content-Length: 219 | ||
X-XSS-Protection: 0 | ||
X-Frame-Options: SAMEORIGIN | ||
<HTML><HEAD><meta http-equiv="content-type" content="text/html;charset=utf-8"> | ||
<TITLE>301 Moved</TITLE></HEAD><BODY> | ||
<H1>301 Moved</H1> | ||
The document has moved | ||
<A HREF="http://www.google.com/">here</A>. | ||
</BODY></HTML> | ||
---End Execution--- | ||
``` | ||
|
||
|
||
|
||
|
||
|