Hints && Ticks

Devloper Only

Setup test user

  • Use the FTP user on SG-Runner
  • Use Notepad++ with plugins like NppXMLTree, NppFTP, or Visual Studio Code
  • Add a test developer user exclusively for SFTP access
vi /etc/sshd/sshd_config

#SFTP

Match User sea_dev
ChrootDirectory /opt/sea/
ForceCommand internal-sftp

Setup pcap capturing

For Linux desktop:

For Linux desktop: 
mkfifo /tmp/tmp.pcap 
ssh -P 22 root@192.168.220.135 “tcpdump -s 0 -U -n -w - -i lo not port 3686” > /tmp/tmp.pcap 

Launch Wireshark and capture traffic from the FIFO file /tmp/tmp.pcap.

For Win desktop:

ssh -P 22 root@192.168.220.135 “tcpdump -s 0 -U -n -w - -i lo not port 3686” > tmp.pcap 

Launch Wireshark and capture data from the FIFO file /tmp/tmp.pcap.