Author Topic: [HELP] wininet.dll hook  (Read 3905 times)

0 Members and 1 Guest are viewing this topic.

Offline darkhunter

  • /dev/null
  • *
  • Posts: 18
  • Cookies: -7
    • View Profile
[HELP] wininet.dll hook
« on: July 26, 2013, 01:30:12 am »
Good evening, I wanted to ask if you can create a form-grabber or a hook dll wininet.dll as in the botnet Zeus in vb6, thanks in advance for the answers ;)

Offline Kulverstukas

  • Administrator
  • Zeus
  • *
  • Posts: 6627
  • Cookies: 542
  • Fascist dictator
    • View Profile
    • My blog
Re: [HELP] wininet.dll hook
« Reply #1 on: July 26, 2013, 09:35:42 am »
If it was done in Zeus, then it's obvious that you can... but why VB6? why do you have to use that skiddy shit that has been used among skiddy malware devs so much?

Offline darkhunter

  • /dev/null
  • *
  • Posts: 18
  • Cookies: -7
    • View Profile
Re: [HELP] wininet.dll hook
« Reply #2 on: July 26, 2013, 10:20:03 am »
Unfortunately I only know the vb6 and I could not find a good guide on the C in Italian  :-\

xC

  • Guest
Re: [HELP] wininet.dll hook
« Reply #3 on: July 28, 2013, 09:46:24 pm »
Took me forever to find a working Zeus link, however here is the source. It should be somewhat easy to port to VB6. Look under source at corehook, userhook, and httpgrabber; it should get you started.

Password: zeus
« Last Edit: July 28, 2013, 09:46:45 pm by xC »

Offline darkhunter

  • /dev/null
  • *
  • Posts: 18
  • Cookies: -7
    • View Profile
Re: [HELP] wininet.dll hook
« Reply #4 on: July 29, 2013, 01:46:42 am »
Thanks for the reply, one last thing, could you tell me if there is a way to make a BTC Mining in vb6?

Offline vezzy

  • Royal Highness
  • ****
  • Posts: 771
  • Cookies: 172
    • View Profile
Re: [HELP] wininet.dll hook
« Reply #5 on: July 29, 2013, 02:55:39 am »
Given that VB6 is a Turing complete language, it is by no means impossible, however it is computationally infeasible since Bitcoin mining is a cryptographically demanding and arduous process of calculating SHA-256 block headers. Which is unsuitable for a language like Visual Basic.
« Last Edit: July 29, 2013, 02:56:08 am by vezzy »
Quote from: Dippy hippy
Just brushing though. I will be semi active mainly came to find a HQ botnet, like THOR or just any p2p botnet

xC

  • Guest
Re: [HELP] wininet.dll hook
« Reply #6 on: July 29, 2013, 05:26:06 am »
Calculating hashes is easier in VB6 then traditional C. If you create a module for that alone and use the included components for appropriate handshakes it actually takes far less code.

Edit: I included in the post a VB6 example of SHA-256 encryption. Also, here is a little information about the Bitcoin method.
« Last Edit: July 29, 2013, 05:30:15 am by xC »

Offline darkhunter

  • /dev/null
  • *
  • Posts: 18
  • Cookies: -7
    • View Profile
Re: [HELP] wininet.dll hook
« Reply #7 on: July 29, 2013, 11:26:56 am »
Thanks for the replies, however I wondered how I could do it in vb6 because unfortunately I do not know C :-\

xC

  • Guest
Re: [HELP] wininet.dll hook
« Reply #8 on: July 31, 2013, 04:05:35 pm »
You need no knowledge of C to port something to VB6 except the calls.
« Last Edit: August 01, 2013, 06:29:58 am by xC »

Offline darkhunter

  • /dev/null
  • *
  • Posts: 18
  • Cookies: -7
    • View Profile
Re: [HELP] wininet.dll hook
« Reply #9 on: August 01, 2013, 12:40:23 am »
Thanks for the answers   ;)

Offline bubzuru

  • Knight
  • **
  • Posts: 395
  • Cookies: 21
  • everything is contained in the data
    • View Profile
    • New School Tools
Re: [HELP] wininet.dll hook
« Reply #10 on: October 08, 2013, 01:18:06 am »
of course you can just use the winapi, you will need to declere all needed function first

example:
Code: [Select]
Declare Auto Function MBox Lib "user32.dll" Alias "MessageBox" (
    ByVal hWnd As Integer,
    ByVal txt As String,
    ByVal caption As String,
    ByVal Typ As Integer) As Integer

Walkthrough: Calling Windows APIs (Visual Basic):
http://msdn.microsoft.com/en-us/library/172wfck9.aspx
Damm it feels good to be gangsta
http://bubzuru.comule.com

Offline darkhunter

  • /dev/null
  • *
  • Posts: 18
  • Cookies: -7
    • View Profile
Re: [HELP] wininet.dll hook
« Reply #11 on: October 11, 2013, 10:20:03 pm »
Ok, thank you very much Bubzuru  ;)