Netcat, Cryptcat, ANGRY IP Flashcards

1
Q

(True|False) Netcat is a network utility tool that utilizes both tcp and udp connections to read and write data across a network in an encrypted matter.

A

False, cryptcat uses encryption while netcat cat does not

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

NC Parameters:
Function: bind and listen for incoming connections

A

Command: -l, –listen

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

NC Parameters:
Function: executes the given command

A

Command: -e, –exec

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

NC Parameters:
Function: uses UDP for connection (default is TCP)

A

Command: -u, –udp

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

NC Parameters:
Function: accepts multiple connections

A

Command: -k, –keep-open

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

NC Parameters:
Function: set the port number for Ncat to
bind to

A

Command: -p, –source-port

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

NC Parameters:
Function: set the address for Ncat to bind to

A

Command: -s, –source

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

If you can’t remember Netcat Parameters when in doubt,

A

MAN IT OUT

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Netcat Capabilities:
basic syntax to establish a connection

A

nc -l [hostname] [port]

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Netcat Capabilities:
sends a file to a specified host on the specified port

A

ncat –l [hostname] [port] > [filename]

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Netcat Capabilities:
- scans for open ports within a specified
range

A

nc –zv [hostname] [port-range]

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Netcat Capabilities:
- establishes remote shell access

A

ncat –l –p [port] –e “/bin/bash”

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

(True|False) Cryptcat uses Threefish symmetric encryption

A

Falses, it uses Twofish

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

(True|False) Cryptcat’s symmetric encryption uses one 256-bit key

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Cryptcat’s Listening Server:

A

cryptcat -k [message] -l -p [port]

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is angry ip scanner?

A

it is an open-source,
cross-platform GUI port scanning tool

17
Q

What does angry ip scanner do?

A

pings each IP address to check if it’s alive, then optionally resolves its hostname, collects the MAC address, and scans ports.