Hi All,
Anybody knows about WinpCap or VBPacket ? If yes, please provide me some code for capture network raw data.
Printable View
Hi All,
Anybody knows about WinpCap or VBPacket ? If yes, please provide me some code for capture network raw data.
Here is some documentation on WinpCap.
What programming language are you using?
HI Hack,
I am using Visual Basic 6.0.
Did the documentation help?
Hi Hack,
The documentation help me. And I have found WinpCap Wrapper VBPcap.dll written by Lorenzo Cerulli.
Now, I want to display text data rather than hex data. Could you help me in this regards?
Bit late but here is a HexToString Function i made should work well :)
Code:Public Function HexToString(ByVal HexToStr As String) As String
Dim strTemp As String
Dim strReturn As String
Dim I As Long
For I = 1 To Len(HexToStr) Step 3
strTemp = Chr$(Val("&H" & Mid$(HexToStr, I, 2)))
strReturn = strReturn & strTemp
Next I
HexToString = strReturn
Resume Next
End Function
hi Hell-Lord,
Thanks for your help.
Anybody can help for Packet Redirect using VBPCap?
Does VBCap.dll have a function similar to what you need?
Hi Hell-Lord,
I can't find the any function on VBPCap.dll for packet redirecting. :(
Could you attach VBCap.Dll please :)
Hi Hell-Lord,
Please visit http://web.e26.it/lollo/website/ vbpcap.dll written by Lorenzo Cerulli.
any progress in this matter ?