Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
rerange committed Jun 16, 2019
1 parent 92fdd43 commit e988052
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pptpcrack.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,12 @@ var outFilename = flag.String("o", "", "Filename of decrypted packets to write t
var wordlist = flag.String("w", "", "Filename of password list to crack MS-CHAP-V2 handshake")

type Handshake struct {
KeyLength int
PacketIndex int
IsSucceed bool
ServerName string
UserName string
Password string
KeyLength int
AuthenticatorResponse string
AuthenticatorChallenge []byte
PeerChallenge []byte
Expand All @@ -60,8 +62,6 @@ type Handshake struct {
ServerSessionKey []byte
PeerIP net.IP
AuthenticatorIP net.IP
PacketIndex int
IsSucceed bool
}

var handshakes = map[string]Handshake{}
Expand Down

0 comments on commit e988052

Please sign in to comment.