↧
Google Chrome password crack
Ok!This was easier than i expected Using SqliteBrowser i've managed to get inside the Chrome sqlite database,and see that only the password field was encrypted,and it said BLOB So i knew imediatly that...
View ArticleC++ best way to call a function hourly
So my question is the best way you think, a hourly function can be called in the int main() function ? Thanks in advanced.
View Article3 ways to get address base kernel32 from peb
hello all.The situation is as follows:There are three ways to get the base address of kernel32.For this i must know how like they are structures of these if I want to arrive by means of their double...
View ArticleSimple PE information
Some quick written codes that someone might find interesting /* (c) Anasazi 2012 */ #include <stdio.h> #include <stdlib.h> #include <windows.h> #include <conio.h>...
View ArticleExecute Shellcode Metasploit In Heap
Bypass AV with metasploit + C. Generator_shellcode.py : #! /usr/bin/env python #coding: utf-8 #by Mharcos Nesster (Mh40xf) #Email: mh4root@gmail.com # gerando shellcode import sys import os import...
View ArticleA simple slowloris tool for Windows
The original slowloris program was written in perl, so I decided to write a C++ version for Windows. #include <stdio.h> #include <WinSock2.h> #pragma comment(lib,"ws2_32.lib") DWORD WINAPI...
View ArticleBypass Win7 UAC (IT WORKS!)
http://www.pretentiousname.com/misc/win7_uac_whitelist2.html#release So after countless hours of searching through the internet I have finaly found a way to bypass the damn Win7 UAC and wanted to...
View ArticleRUNPE Crashing
Basically my encrypted lpBuffer is loaded from the resources,so this is the code that decrypts and injects,this code works when its directly from a file and not from a encrypted file from resources,...
View ArticleNtDeleteKey Hook
Hi Guys, I'm writing a code meant to protect from deletion a key that contains a value which is set by my main application. In order to do this I hook successfuly NtDeleteKey function and then I was...
View Articlequestion on class members c++.
Hi, i have download some piece code, which i would like to use, I am not sure how. here is the 2 classes declarations: class HotThing{ private: bool isCelsius; int maxTemp; bool isFlammable;...
View Articlerequired programming knowledge to make a trojan with c++
Hi, it has been a year since I started learning c++ and now I know very well the basics of this language but I would like to ask what should I know exactly to make a trojan horse and how can I learn...
View ArticleBenefits of 64 bit versus 32 bit
I had a discussion concerning whether there are many user programs that could benefit from a 64 Bit O.S. I got this response. < The parameters are passed via registers and not via stack. That...
View Article"Video Source" popup during webcam image capturing
I have simple code to capture image from my webcam in windows 7 system. my code is similar to posted in below thread. http://www.rohitab.com/discuss/topic/34407-webcam/?hl=%2Bvideo+%2Bsource Issue:-...
View ArticleMultiple Language Support to win32 application
I want to give Chinese, French, Italian,Spanish support to my windows app. How i am trying to do it? I have kept strings in xml file, reading them within the application and trying to display. But...
View ArticleFirefox password cracker - clean code
I took another look at the code i've discussed with mister wap2k here:http://www.rohitab.com/discuss/topic/40986-lets-decrypt-firefox-passwords/ and i've made a cleaner version.First i've removed the...
View ArticleNexus One (Android) VPN Connection to DD-WRT Router
Configuring DD-WRT to allow VPN connections from a Google Nexus One (Android) Phone - http://www.rohitab.com/nexus-one-android-vpn-connection-to-dd-wrt-router
View Article64 bit hook crashes when calling original function
How can I hook a 64-bit function? I tried writing my own as shown below but it seems to be a ton more complicated than this.. I get it to hook just fine but I can't get it to call the original...
View ArticleWinMain@16 Error!
hi there!.... ......i just started C windows programming and decided to start of with GUI/UI... and i compiled this code using console and it worked.... # include<windows.h> int WINAPI...
View Articlecalling Native nldll.dll functions with inline asm
Ok i am stuck on getting a working sample on how to use usermode functions in inline asm,i understand syscall is for x86 and sysenter is for x64 I found this,but its for x86Windows 7 x86 execute a...
View ArticleC++ low level keyhook a.k. keylogger
So i scrambled some pieces together from the internet, what are your thoughts on this and how can improve this code? Thanks in advanced: #include <windows.h> #include <stdio.h> HHOOK...
View Article