Skip to content
Stack Ashes
Go back

流量分析-数字取证

Obtain Information


Sources of Evidence

Network Intrusion Analysis

Based on the captured network packets, the client (192.168.56.1) attempts to log into the FTP server (192.168.56.101) multiple times. By analyzing the FTP protocol commands, such as USER and PASS, along with the server’s responses, it is observed that the client attempted to log in 30 times with different passwords (e.g., “1” and “2”), and all attempts failed.

This behavior is consistent with a password enumeration attack, where the client repeatedly tries different passwords until the login is successful or the attack is aborted.


Key Evidence Analysis

  1. Packet Capture:

    • In the FTP session, the client sends a USER command to provide a username, followed by a PASS command to send the password. The server’s responses (e.g., 331 code asking for a password, 530 code indicating a failed login) reveal multiple login attempts by the client.
  2. Traffic Flow Analysis:

    • Through the Wireshark capture, we observe all interactions between the client and the server, including login requests, server responses, failed login attempts, and subsequent QUIT commands to close the connection.
  3. Repeated Login Attempts:

    • The client repeatedly sends USER and PASS commands with different passwords. The server responds with 530 Login incorrect each time, indicating that the login attempts were unsuccessful.
  4. Traffic Analysis Result:

    • After 30 password attempts, the client ceases its login attempts. Key packets include:
6   0.006512   192.168.56.1   192.168.56.101   FTP   76   Request: USER bro
8   0.009093   192.168.56.101  192.168.56.1    FTP   98   Response: 331 Password required for bro.
10  0.009567   192.168.56.1    192.168.56.101  FTP   74   Request: PASS 1
12  2.371080   192.168.56.101  192.168.56.1    FTP   88   Response: 530 Login incorrect.
14  2.371558   192.168.56.1    192.168.56.101  FTP   72   Request: QUIT
16  2.371849   192.168.56.101  192.168.56.1    FTP   80   Response: 221 Goodbye.

Resut

Conclusion:

This report highlights potential security threats on the network and provides practical recommendations to enhance network security and protect against unauthorized access attempts.


Share this post on:

Previous Post
inferno
Next Post
流量分析-数字取证