Skip to content

Radius parsing in golang using gopacket. You can parse from either live traffic or from pcap of your choice.

License

Notifications You must be signed in to change notification settings

adeelkhan-ak/go-radius

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 

Repository files navigation

image

go-radius

Radius parsing in golang using gopacket. You can parse from either live traffic or from pcap of your choice.

RADIUS

RADIUS is an AAA (authentication, authorization, and accounting) protocol that manages network access. RADIUS uses two types of packets to manage the full AAA process: Access-Request, which manages authentication and authorization; and Accounting-Request, which manages accounting. Authentication and authorization are defined in RFC 2865 while accounting is described by RFC 2866

How to run

# Get the gopacket package from GitHub
go get github.com/google/gopacket
# Pcap dev headers might be necessary
sudo apt-get install libpcap-dev
go build main.go  
./main -h       

About

Radius parsing in golang using gopacket. You can parse from either live traffic or from pcap of your choice.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages