|
-
Apr 23rd, 2007, 06:12 AM
#1
Thread Starter
Junior Member
Help on WinpCap / VBPacket
Hi All,
Anybody knows about WinpCap or VBPacket ? If yes, please provide me some code for capture network raw data.
-
Apr 26th, 2007, 08:02 AM
#2
Re: Help on WinpCap / VBPacket
Here is some documentation on WinpCap.
What programming language are you using?
-
Apr 27th, 2007, 01:38 AM
#3
Thread Starter
Junior Member
Re: Help on WinpCap / VBPacket
HI Hack,
I am using Visual Basic 6.0.
-
Apr 27th, 2007, 11:05 AM
#4
Re: Help on WinpCap / VBPacket
Did the documentation help?
-
Apr 29th, 2007, 01:17 AM
#5
Thread Starter
Junior Member
Re: Help on WinpCap / VBPacket
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?
-
May 4th, 2007, 12:59 AM
#6
Re: Help on WinpCap / VBPacket
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
-
May 8th, 2007, 12:02 AM
#7
Thread Starter
Junior Member
Re: Help on WinpCap / VBPacket
hi Hell-Lord,
Thanks for your help.
Anybody can help for Packet Redirect using VBPCap?
-
May 8th, 2007, 01:21 AM
#8
Re: Help on WinpCap / VBPacket
Does VBCap.dll have a function similar to what you need?
-
May 8th, 2007, 02:27 AM
#9
Thread Starter
Junior Member
Re: Help on WinpCap / VBPacket
Hi Hell-Lord,
I can't find the any function on VBPCap.dll for packet redirecting.
-
May 8th, 2007, 02:31 AM
#10
Re: Help on WinpCap / VBPacket
Could you attach VBCap.Dll please
-
May 8th, 2007, 02:47 AM
#11
Thread Starter
Junior Member
Re: Help on WinpCap / VBPacket
Hi Hell-Lord,
Please visit http://web.e26.it/lollo/website/ vbpcap.dll written by Lorenzo Cerulli.
-
May 14th, 2007, 12:44 PM
#12
Thread Starter
Junior Member
Re: Help on WinpCap / VBPacket
any progress in this matter ?
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|