2024-07-12
한어Русский языкEnglishFrançaisIndonesianSanskrit日本語DeutschPortuguêsΕλληνικάespañolItalianoSuomalainenLatina
Netcat (saepe nc dicitur) instrumentum retis potens est late pro retis probatione ac debugging adhibita. Data retis legere et scribere potest, protocolla TCP et UDP sustinet, et ad portum scanning, portum vigilantia, fasciculi translationem aliosque usus adhiberi potest.
• -l: Modus auscultandi, officium incipere et hospites expectare.
• -p: Specificare portum et pone numerum portum utendum est a Netcat.
• -n: IP tantum utere, nulla DNS resolutio.
• -v: detailed informationes expone et statum detailed in output in nexu processus.
• -z: Scan modus, ad portum intuens adhibitus, nulla connexio constat.
• -u: UDP modus, utere UDP protocollum pro defectu TCP.
• - c: Mandatum certum.
• -e: progressio redirectio, vexillum redirectio initus/output ad certum propositum.
nc [hostname] [port]
Verbi gratia, coniungere ad portum 80 ex xxx.com;
nc xxx.com 80
nc -l [port]
Exempli gratia: portum loci audi 5555;
nc -l 5555
nc -l [port] > [output_file]
nc [hostname] [port] < [input_file]
Exempli gratia, tabellas locales transferre in servitorem remotum:
nc -l 1234 > received_file
nc localhost 1234 < file_to_send
nc -zv [hostname] [port]
Exempli gratia, portum photographicum 80 of xxx.com:
nc -zv xxx.com 80
nc xxx.com 80
nc -l 1234
nc -l 1234 > received_file
nc localhost 1234 < file_to_send
nc -zv xxx.com 80