SlideShare uma empresa Scribd logo
1 de 21
TCP Input Text
Christian Heinrich aka “cmlh”

Updated: February 2012
TCP Input Text



Used in the “Recon” Phase of Penetration Test

Enumerates FQDN and TCP Ports

Implements the
Google SOAP Search API
Bing API v2 (new)



                                            tcpinputtext.org   2
cache:

May be out of date since last crawl by “Googlebot”




Hence, positive assurance by nmap, nc, etc


                                             tcpinputtext.org   3
Output Plug-In Architecture



TCP Port and FQDN
nmap
netcat aka nc
maltego (new)
.CSV File



Output Files written to
./[query]/tit/Bing|Google
                                       tcpinputtext.org   4
Regular Expression


=~m|(w+)://([^/:]+)(:d+)?/(.*)|;

my $Protocol = $1;
my $Domain_Name = $2;
my $URI = ("/" . $4); // discarded
if ($3 =~ /:(d+)/) {$TCP_Port = $1}
  else {$TCP_Port = 80}




                                 tcpinputtext.org   5
tit_FQDN.csv



Forward Lookup with dig and/or nslookup
Scan for TCP Ports *not* within Search Results.
  Neither TCP/80 or TCP/443




Output Files written to
./[query]/tit/Bing|Google


                                             tcpinputtext.org   6
tit_FQDN.csv Example

glcfapp.umiacs.umd.edu
www.speedguide.net
inside.c-spanarchives.org
www.wsu.edu
torrents.freebsd.org
sammelpunkt.philo.at
arc.cs.odu.edu
www.ripn.net
phy043.tours.inra.fr
202.188.95.52


                                 tcpinputtext.org   7
tit_FQDN_TCP.csv Example

glcfapp.umiacs.umd.edu,8080
www.speedguide.net,8080
inside.c-spanarchives.org,8080
www.wsu.edu,8080
torrents.freebsd.org,8080
sammelpunkt.philo.at,8080
arc.cs.odu.edu,8080
www.ripn.net,8080
phy043.tours.inra.fr,8080
202.188.95.52,8080


                                   tcpinputtext.org   8
tit_maltego.csv Example

ca.bing.com,http,80
de.bing.com,http,80
m.bing.com,http,80
nz.bing.com,http,80
uk.bing.com,http,80
www.bing.com,http,80




                                  tcpinputtext.org   9
tit_maltego.csv Example




                          tcpinputtext.org   10
tit_nc.sh Example

nc   -vz   glcfapp.umiacs.umd.edu 8080
nc   -vz   www.speedguide.net 8080
nc   -vz   inside.c-spanarchives.org 8080
nc   -vz   www.wsu.edu 8080
nc   -vz   torrents.freebsd.org 8080
nc   -vz   sammelpunkt.philo.at 8080
nc   -vz   arc.cs.odu.edu 8080
nc   -vz   www.ripn.net 8080
nc   -vz   phy043.tours.inra.fr 8080
nc   -vz   202.188.95.52 8080


                                     tcpinputtext.org   11
tit_nmap.sh Example

nmap   -PN   -sT   -p   T:8080   glcfapp.[snip]
nmap   -PN   -sT   -p   T:8080   www.spee[snip]
nmap   -PN   -sT   -p   T:8080   inside.c[snip]
nmap   -PN   -sT   -p   T:8080   www.wsu.edu
nmap   -PN   -sT   -p   T:8080   torrents[snip]
nmap   -PN   -sT   -p   T:8080   sammelpu[snip]
nmap   -PN   -sT   -p   T:8080   arc.cs.odu.edu
nmap   -PN   -sT   -p   T:8080   www.ripn.net
nmap   -PN   -sT   -p   T:8080   phy043.t[snip]
nmap   -PN   -sT   -p   T:8080   202.188.95.52


                                           tcpinputtext.org   12
Output Plug-In Architecture



To remove duplicate entries

cmlh$ sort file | uniq > nodups_file




Output Files written to
./[query]/tit/Bing|Google


                                        tcpinputtext.org   13
DataDumper.txt Example

$VAR1 = bless( {
  'searchTime' => '0.116592',
  'endIndex' => '10',
  'searchComments' => '',
  'documentFiltering' => 0,
  'searchTips' =>Deprecated for json_debug_log.txt
                  '',
  'estimatedTotalResultsCount' =>
  '51700000',
  'searchQuery' => 'inurl:8080',
  'startIndex' => '1',
  'resultElements' => [
     bless( {
               [SNIP]

                                                 tcpinputtext.org   14
json_debug_log.txt

Divided into three major sections marked with “#”:

1. $bing_json_url
2. $bing_http_request->get($bing_json_url)-
  >content
3. decode_json($bing_http_response)-
  >{SearchResponse}->{Web}->{Results}


Smart::Comments are also supported for v0.3.


                                              tcpinputtext.org   15
tit Roadmap

PoC v0.1 (RUXCON 2K8 in Sydney, AU, Nov 2008)
Previewed at ToorCon(US) and SecTor (CA)


Alpha v0.2 (SyScan’09 Singapore)
Moving repository to code.google.com/p/tit
Added FQDN Output Plug-In
Previewed at OWASP AU 2009 (February) and 5th
 CONFidence 2009 (Poland)



                                          tcpinputtext.org   16
Changes from v0.1 to v0.2

cmlh$ ./tit.pl –key “demo” –query “inurl:8080” –start 1


“TCP Input Text“ PoC v0.2


Copyright 2008, 2009 Christian Heinrich
Licensed under the Apache License, Version 2.0


Output Plug-Ins (TCP_FQDN_CSV, FQDN_CSV, NMAP_SH, NC_SH)

1.   glcfapp.umiacs.umd.edu TCP/8080 available
2.   www.speedguide.net TCP/8080 available
3.   www.wsu.edu TCP/8080 available
4.   inside.c-spanarchives.org TCP/8080 available
5.   torrents.freebsd.org TCP/8080 available
6.   sammelpunkt.philo.at TCP/8080 available
7.   arc.cs.odu.edu TCP/8080 available

                                                           tcpinputtext.org   17
tit Roadmap

Alpha v0.3

Support for Bing API v2
 Repository at tit.codeplex.com
Maltego Local Transform (CSV)
 Repository at github.com/cmlh/maltego




                                          tcpinputtext.org   18
Changes from v0.2 to v0.3

cmlh$ ./tit.pl -site "bing.com"

"TCP Input Text" for Bing Alpha (Release Candidate) RC v0.0.1

Copyright 2008-2012 Christian Heinrich
Licensed under the Apache License, Version 2.0

Output Plug-Ins: FQDN_CSV, TCP_FQDN_CSV, MALTEGO_CSV, NMAP_SH, NC_SH

Creating ./sitebing.com/tit/bing

cmlh$




                                         Enabled with ## Smart::Comments


                                                                       tcpinputtext.org   19
tit Roadmap

Beta v0.4 and onwards

Merge tit-google-soap.pl and tit-bing.pl
 Repository at github.com/cmlh/dic
sub output_plugin
 curl and/or wget (i.e. replay web intercepting proxy)
 Google Translate (Speak English or Die)




                                                 tcpinputtext.org   20
Questions



Latest Slides Available From:
http://slideshare.net/cmlh/tit
https://github.com/cmlh/tit



Contact:
christian.heinrich@cmlh.id.au
http://cmlh.id.au/contact


                                  tcpinputtext.org   21

Mais conteúdo relacionado

Mais procurados

Centralized Logging with syslog
Centralized Logging with syslogCentralized Logging with syslog
Centralized Logging with syslog
amiable_indian
 
Basic command for linux
Basic command for linuxBasic command for linux
Basic command for linux
gt0ne
 
Iss letcure 7_8
Iss letcure 7_8Iss letcure 7_8
Iss letcure 7_8
Ali Habeeb
 
Plan 9カーネルにおけるTCP/IP実装(未完)
Plan 9カーネルにおけるTCP/IP実装(未完)Plan 9カーネルにおけるTCP/IP実装(未完)
Plan 9カーネルにおけるTCP/IP実装(未完)
Ryousei Takano
 
Rubyspec y el largo camino hacia Ruby 1.9
Rubyspec y el largo camino hacia Ruby 1.9Rubyspec y el largo camino hacia Ruby 1.9
Rubyspec y el largo camino hacia Ruby 1.9
David Calavera
 
Highload осень 2012 лекция 8
Highload осень 2012 лекция 8Highload осень 2012 лекция 8
Highload осень 2012 лекция 8
Technopark
 
Pound & Varnish - Cache e Balanceamento de Carga
Pound & Varnish - Cache e Balanceamento de CargaPound & Varnish - Cache e Balanceamento de Carga
Pound & Varnish - Cache e Balanceamento de Carga
gsroma
 

Mais procurados (20)

From zero to hero - Easy log centralization with Logstash and Elasticsearch
From zero to hero - Easy log centralization with Logstash and ElasticsearchFrom zero to hero - Easy log centralization with Logstash and Elasticsearch
From zero to hero - Easy log centralization with Logstash and Elasticsearch
 
Centralized Logging with syslog
Centralized Logging with syslogCentralized Logging with syslog
Centralized Logging with syslog
 
Pf: the OpenBSD packet filter
Pf: the OpenBSD packet filterPf: the OpenBSD packet filter
Pf: the OpenBSD packet filter
 
PSR-3 logs using Monolog and Graylog
PSR-3 logs using Monolog and Graylog PSR-3 logs using Monolog and Graylog
PSR-3 logs using Monolog and Graylog
 
JDO 2019: Kubernetes logging techniques with a touch of LogSense - Marcin Stożek
JDO 2019: Kubernetes logging techniques with a touch of LogSense - Marcin StożekJDO 2019: Kubernetes logging techniques with a touch of LogSense - Marcin Stożek
JDO 2019: Kubernetes logging techniques with a touch of LogSense - Marcin Stożek
 
Basic command for linux
Basic command for linuxBasic command for linux
Basic command for linux
 
What is new in Go 1.8
What is new in Go 1.8What is new in Go 1.8
What is new in Go 1.8
 
DNS SERVER
DNS SERVERDNS SERVER
DNS SERVER
 
WebSockets with PHP: Mission impossible
WebSockets with PHP: Mission impossibleWebSockets with PHP: Mission impossible
WebSockets with PHP: Mission impossible
 
Monitoring with Syslog and EventMachine
Monitoring with Syslog and EventMachineMonitoring with Syslog and EventMachine
Monitoring with Syslog and EventMachine
 
Iss letcure 7_8
Iss letcure 7_8Iss letcure 7_8
Iss letcure 7_8
 
Plan 9カーネルにおけるTCP/IP実装(未完)
Plan 9カーネルにおけるTCP/IP実装(未完)Plan 9カーネルにおけるTCP/IP実装(未完)
Plan 9カーネルにおけるTCP/IP実装(未完)
 
BOSH deploys distributed systems, and Diego runs any containers
BOSH deploys distributed systems, and Diego runs any containersBOSH deploys distributed systems, and Diego runs any containers
BOSH deploys distributed systems, and Diego runs any containers
 
IL: 失われたプロトコル
IL: 失われたプロトコルIL: 失われたプロトコル
IL: 失われたプロトコル
 
Rubyspec y el largo camino hacia Ruby 1.9
Rubyspec y el largo camino hacia Ruby 1.9Rubyspec y el largo camino hacia Ruby 1.9
Rubyspec y el largo camino hacia Ruby 1.9
 
Highload осень 2012 лекция 8
Highload осень 2012 лекция 8Highload осень 2012 лекция 8
Highload осень 2012 лекция 8
 
Rihards Olups - Encrypting Daemon Traffic With Zabbix 3.0
Rihards Olups - Encrypting Daemon Traffic With Zabbix 3.0Rihards Olups - Encrypting Daemon Traffic With Zabbix 3.0
Rihards Olups - Encrypting Daemon Traffic With Zabbix 3.0
 
Pound & Varnish - Cache e Balanceamento de Carga
Pound & Varnish - Cache e Balanceamento de CargaPound & Varnish - Cache e Balanceamento de Carga
Pound & Varnish - Cache e Balanceamento de Carga
 
Laura Garcia - Shodan API and Coding Skills [rooted2019]
Laura Garcia - Shodan API and Coding Skills [rooted2019]Laura Garcia - Shodan API and Coding Skills [rooted2019]
Laura Garcia - Shodan API and Coding Skills [rooted2019]
 
Ethernet Shield
Ethernet ShieldEthernet Shield
Ethernet Shield
 

Destaque

Metadata - What is Unseen
Metadata - What is UnseenMetadata - What is Unseen
Metadata - What is Unseen
Edith Cowan University
 
Aberraciones sexuales
Aberraciones sexualesAberraciones sexuales
Aberraciones sexuales
daniguzman
 
從u-boot 移植 NDS32 談 嵌入式系統開放原始碼開發的 一些經驗
從u-boot 移植 NDS32 談 嵌入式系統開放原始碼開發的 一些經驗從u-boot 移植 NDS32 談 嵌入式系統開放原始碼開發的 一些經驗
從u-boot 移植 NDS32 談 嵌入式系統開放原始碼開發的 一些經驗
Macpaul Lin
 
Sobre la pornografía y el cine - Manuel Bláuab
Sobre la pornografía y el cine - Manuel BláuabSobre la pornografía y el cine - Manuel Bláuab
Sobre la pornografía y el cine - Manuel Bláuab
Manuel Sierra Alonso
 

Destaque (15)

ssh
sshssh
ssh
 
Sin City
Sin CitySin City
Sin City
 
부천오피, 목동오피,안양오피@(다솜넷)수원오피
부천오피, 목동오피,안양오피@(다솜넷)수원오피부천오피, 목동오피,안양오피@(다솜넷)수원오피
부천오피, 목동오피,안양오피@(다솜넷)수원오피
 
Cuadernos BDSM 1
Cuadernos BDSM 1Cuadernos BDSM 1
Cuadernos BDSM 1
 
Maltego Breach
Maltego BreachMaltego Breach
Maltego Breach
 
PA-DSS
PA-DSSPA-DSS
PA-DSS
 
Cheaters
CheatersCheaters
Cheaters
 
TERMS THAT WOULD MAKE KINK LOOK INNOCENT
TERMS THAT WOULD MAKE KINK LOOK INNOCENTTERMS THAT WOULD MAKE KINK LOOK INNOCENT
TERMS THAT WOULD MAKE KINK LOOK INNOCENT
 
Cómo hablar de sexualidad con los adolescentes
Cómo hablar de sexualidad con los adolescentes Cómo hablar de sexualidad con los adolescentes
Cómo hablar de sexualidad con los adolescentes
 
Metadata - What is Unseen
Metadata - What is UnseenMetadata - What is Unseen
Metadata - What is Unseen
 
Aberraciones sexuales
Aberraciones sexualesAberraciones sexuales
Aberraciones sexuales
 
BDSM
BDSMBDSM
BDSM
 
Amatorski as a 'music career' example?
Amatorski as a 'music career' example?Amatorski as a 'music career' example?
Amatorski as a 'music career' example?
 
從u-boot 移植 NDS32 談 嵌入式系統開放原始碼開發的 一些經驗
從u-boot 移植 NDS32 談 嵌入式系統開放原始碼開發的 一些經驗從u-boot 移植 NDS32 談 嵌入式系統開放原始碼開發的 一些經驗
從u-boot 移植 NDS32 談 嵌入式系統開放原始碼開發的 一些經驗
 
Sobre la pornografía y el cine - Manuel Bláuab
Sobre la pornografía y el cine - Manuel BláuabSobre la pornografía y el cine - Manuel Bláuab
Sobre la pornografía y el cine - Manuel Bláuab
 

Semelhante a tit

PyCon 2013 : Scripting to PyPi to GitHub and More
PyCon 2013 : Scripting to PyPi to GitHub and MorePyCon 2013 : Scripting to PyPi to GitHub and More
PyCon 2013 : Scripting to PyPi to GitHub and More
Matt Harrison
 

Semelhante a tit (20)

Pcapy and dpkt - tcpdump on steroids - Ran Leibman - DevOpsDays Tel Aviv 2018
Pcapy and dpkt - tcpdump on steroids - Ran Leibman - DevOpsDays Tel Aviv 2018Pcapy and dpkt - tcpdump on steroids - Ran Leibman - DevOpsDays Tel Aviv 2018
Pcapy and dpkt - tcpdump on steroids - Ran Leibman - DevOpsDays Tel Aviv 2018
 
Improving go-git performance
Improving go-git performanceImproving go-git performance
Improving go-git performance
 
Querying 1.8 billion reddit comments with python
Querying 1.8 billion reddit comments with pythonQuerying 1.8 billion reddit comments with python
Querying 1.8 billion reddit comments with python
 
Package a PyApp as a Flatpak Package: An HTTP Server for Example @ PyCon APAC...
Package a PyApp as a Flatpak Package: An HTTP Server for Example @ PyCon APAC...Package a PyApp as a Flatpak Package: An HTTP Server for Example @ PyCon APAC...
Package a PyApp as a Flatpak Package: An HTTP Server for Example @ PyCon APAC...
 
MongoDB Days UK: Using MongoDB and Python for Data Analysis Pipelines
MongoDB Days UK: Using MongoDB and Python for Data Analysis PipelinesMongoDB Days UK: Using MongoDB and Python for Data Analysis Pipelines
MongoDB Days UK: Using MongoDB and Python for Data Analysis Pipelines
 
Conf42 Python_ ML Enhanced Event Streaming Apps with Python Microservices
Conf42 Python_ ML Enhanced Event Streaming Apps with Python MicroservicesConf42 Python_ ML Enhanced Event Streaming Apps with Python Microservices
Conf42 Python_ ML Enhanced Event Streaming Apps with Python Microservices
 
Pycon - Python for ethical hackers
Pycon - Python for ethical hackers Pycon - Python for ethical hackers
Pycon - Python for ethical hackers
 
Apache StreamPipes – Flexible Industrial IoT Management
Apache StreamPipes – Flexible Industrial IoT ManagementApache StreamPipes – Flexible Industrial IoT Management
Apache StreamPipes – Flexible Industrial IoT Management
 
PyCon 2013 : Scripting to PyPi to GitHub and More
PyCon 2013 : Scripting to PyPi to GitHub and MorePyCon 2013 : Scripting to PyPi to GitHub and More
PyCon 2013 : Scripting to PyPi to GitHub and More
 
Stress your DUT
Stress your DUTStress your DUT
Stress your DUT
 
PLNOG20 - Paweł Małachowski - Stress your DUT–wykorzystanie narzędzi open sou...
PLNOG20 - Paweł Małachowski - Stress your DUT–wykorzystanie narzędzi open sou...PLNOG20 - Paweł Małachowski - Stress your DUT–wykorzystanie narzędzi open sou...
PLNOG20 - Paweł Małachowski - Stress your DUT–wykorzystanie narzędzi open sou...
 
(Slightly) Smarter Smart Pointers
(Slightly) Smarter Smart Pointers(Slightly) Smarter Smart Pointers
(Slightly) Smarter Smart Pointers
 
Boosting command line experience with python and awk
Boosting command line experience with python and awkBoosting command line experience with python and awk
Boosting command line experience with python and awk
 
Doing QoS Before Ceph Cluster QoS is available - David Byte, Alex Lau
Doing QoS Before Ceph Cluster QoS is available - David Byte, Alex LauDoing QoS Before Ceph Cluster QoS is available - David Byte, Alex Lau
Doing QoS Before Ceph Cluster QoS is available - David Byte, Alex Lau
 
Basic Linux kernel
Basic Linux kernelBasic Linux kernel
Basic Linux kernel
 
Devoxx Maroc 2015 HTTP 1, HTTP 2 and folks
Devoxx Maroc  2015 HTTP 1, HTTP 2 and folksDevoxx Maroc  2015 HTTP 1, HTTP 2 and folks
Devoxx Maroc 2015 HTTP 1, HTTP 2 and folks
 
carrow - Go bindings to Apache Arrow via C++-API
carrow - Go bindings to Apache Arrow via C++-APIcarrow - Go bindings to Apache Arrow via C++-API
carrow - Go bindings to Apache Arrow via C++-API
 
Brief Introduction to Cython
Brief Introduction to CythonBrief Introduction to Cython
Brief Introduction to Cython
 
Python at Facebook
Python at FacebookPython at Facebook
Python at Facebook
 
Networking and Go: An Engineer's Journey (Strangeloop 2019)
Networking and Go: An Engineer's Journey (Strangeloop 2019)Networking and Go: An Engineer's Journey (Strangeloop 2019)
Networking and Go: An Engineer's Journey (Strangeloop 2019)
 

Mais de Christian Heinrich (6)

Maltego "Have I been pwned?"
Maltego "Have I been pwned?"Maltego "Have I been pwned?"
Maltego "Have I been pwned?"
 
CVSS
CVSSCVSS
CVSS
 
BSAMMBO
BSAMMBOBSAMMBO
BSAMMBO
 
BSIMM
BSIMMBSIMM
BSIMM
 
OWASP Top Ten
OWASP Top TenOWASP Top Ten
OWASP Top Ten
 
Download Indexed Cache
Download Indexed CacheDownload Indexed Cache
Download Indexed Cache
 

Último

EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
Earley Information Science
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
Joaquim Jorge
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
giselly40
 

Último (20)

How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
Evaluating the top large language models.pdf
Evaluating the top large language models.pdfEvaluating the top large language models.pdf
Evaluating the top large language models.pdf
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 

tit

Notas do Editor

  1. \n
  2. Not an OWASP Project but related to “Download Indexed Cache”.\n
  3. \n
  4. \n
  5. \n
  6. \n
  7. \n
  8. \n
  9. -PN Disable Ping\n-sT TCP Connect Scan\n-p T: Specify TCP Port\n
  10. -PN Disable Ping\n-sT TCP Connect Scan\n-p T: Specify TCP Port\n
  11. -v Verbose\n-z Don’t send any data, just check that port is open\n
  12. -PN Disable Ping\n-sT TCP Connect Scan\n-p T: Specify TCP Port\n
  13. “uniq –c” shows the number of entries\n
  14. -PN Disable Ping\n-sT TCP Connect Scan\n-p T: Specify TCP Port\n
  15. -PN Disable Ping\n-sT TCP Connect Scan\n-p T: Specify TCP Port\n
  16. \n
  17. The “Release \n
  18. \n
  19. The “Release \n
  20. Sub output_plugin is refactoring of csv, FQDN, nc, nmap\n
  21. Not an OWASP Project but related to “Download Indexed Cache”.\n