Latest News
Showing posts with label Tutorials. Show all posts
Showing posts with label Tutorials. Show all posts

Getting the IE Address URL directly!

Posted by genesisdatabase on Sunday, 20 March 2011 , under , , , , , , , , , , , , | comments (0)



As of right now, I am trying to fetch the URL that exists in the Internet Explorer address bar.  I tried using registry to call out to "Software\Microsoft\Internet Explorer\TypedURLs\url1" but Internet Explorer only changes the registry if the adress bar's URL windowas entered by the user!  If you were to link to another page with a click, the registry would not be updated.  What I am doing right now is to use a different method, to find the window of the address bar and retrieve the text directly.  However, I find this method rather hard although proven effecient, a little of Google search got me into this link which right now I am using.  Whether or not it gives me the final solution, I will post it up later in a full article on how to retrieve it with the source code available!  This link has also provided me a good tool to check on windows classes, texts and its child, a little much more better than the Microsoft Spy++.  The tool is called Windowse.  Below is the link to the article that is helping me right now.

Article: http://delphi.about.com/od/windowsshellapi/l/aa060303a.htm

The official way of writing a crypter in C | Source Code

Posted by genesisdatabase on Tuesday, 22 February 2011 , under , , , , , , , , , , , , , , , , , , , | comments (1)



mindlessdeath, a member from HackForums have posted a thread regarding how to write a crypter in C!  I find this source code a very good example for people that are trying to learn to write their own crypter.  Compared to any other source codes that are posted on the internet, the author of this source code gave a very detailed information on each line on what the statements does.  In order to use this source code without much trouble, there are some prerequisites that was mentioned by the author himself. 

Placing an image file in an executable in C




If you ever wanted to place an image file into the executable or store any resources in it, this post will be able to help you.  If you have previously read Builder & Stub | How to create your own builder and stub in C (using Resource), you will be able to understand this post easily.  We are using the similar method by placing the image in the resource data.  In this post, i am creating an application that extracts the image that has been placed in the resource data and place it in a file and execute the file. 

Array of pointers in C

Posted by genesisdatabase on Saturday, 15 January 2011 , under , , , , , , , , , , , , , | comments (0)



Did you ever have a need to store strings in a string arrays and not waste spaces?  In this post i will be explaining some of the ways that you can save yourself from destroying the RAM!

GDWS | GenesisDatabase WLM Stealer

Posted by genesisdatabase on Wednesday, 11 August 2010 , under , , , , , , , , , , , , , , , , , | comments (3)




GDWS is an application that i have created using C without relying on resources for its GUI. It's simple to use and requires no driver reliability however it only works on Windows only.

Functions


- GUI in C
- retrieve stored WLM passwords
- run website in a hidden window via IE or FF (using socket)
- intermediate socket usage
- socket to load website

Download


Download Binary
Download Source Code

Note: If anyone requests for the source code, it would be generous of you to direct them here.  I know it will consume your time but i'm sure a good deed is always worth it - what comes around goes around.

Bypassing Windows Firewall

Posted by genesisdatabase on Thursday, 1 July 2010 , under , , , , , , | comments (3)



Alright i know that in XP we can alter the registry value. In Vista you can just kill the "Windows Security Alert" window and in 7 you can... oh wait i haven't solve this...

Generally when 7 was launched i wasn't there yet i was still coding my keylogger in vista. Then i moved into 7 once the os was being used globally and i got in trouble coding the keylogger with FTP feature for 7 as the firewall blocks it differently. Killing the window wasn't enough.

Today i was creating my newest keylogger and i sort of needed it to be bypassed badly... My first solution was to hit the "Allow access" button but i failed, i think the SendMessage function is prevented eventhough i sent BN_CLICKED it didn't work.

I got frustrated and thought of a second method... i simply used GetRectWindow of the "Allow access" button and used mouseevent to kill that f**king bastard :biggrin: voila... a new firewall bypass method made!

Isn't it fun to mess with windows :) If you need the source code i've built in C, post a reply and let me know i'd like some visitors around ya know.