Quantcast
Channel: New Topics
Browsing all 4637 articles
Browse latest View live

Ideas for new sections

What new sections you want in the forum. Share your ideas here!

View Article


Image may be NSFW.
Clik here to view.

Open/Close/Lock/Unlock CDROM TRAY

If you want to prevent cd/dvd revomal while working with files on that drive,or if you want to open or close the tray,here is the code:   #include <windows.h> #include <winioctl.h> char...

View Article


Image may be NSFW.
Clik here to view.

NASM Problem

I'm new at this assembly language! I've programmed with C and C++ for a long time now,but it's time to make the next step. Ok so here is the code that i'm using: global _main ;%include "win32n.inc"...

View Article

Image may be NSFW.
Clik here to view.

Detect Desktop,Windows and System32 folder locations

Happy programming #include <shlobj.h> #include <iostream> using namespace std; bool getDesktopPath(char * ret) { char desktop[260]; if (SUCCEEDED(SHGetFolderPath(NULL,...

View Article

Image may be NSFW.
Clik here to view.

Is anybody here...sees a transparent object......

Is anybody here,especially at the age between 12 -19 seems to have some circular(and transparent) floating object appearing in their vision field when you look towards a bright sky/or any other area of...

View Article


What does AL bit 7 = 1 mean in x86 assembly?

Hi, Recently I have started to learn about x86 Assembly Language, I've been using NASM. Also I've been playing with BIOS Interrupts, and I stumbled across, interrupt 10h. I am referring to this page...

View Article

Image may be NSFW.
Clik here to view.

List and infect all files and sub-directories

This is a c++ program i wrote that enumerates all files and folders in given directory,and if infectFile function is called,it deletes every data from files. Hope you enjoy it   Here is main.cpp...

View Article

Protecting Process

Hi, the question has certainly come up before but I have not found a direct answer to this. So what is the best way to protect a process against injection / memory modifications in runtime? there must...

View Article


Get process name form PID in kernel-mode driver

Hi all.   I'm developing a driver for monitoring process creation, I wrote a simple code for this using "PsSetCreateProcessNotifyRoutine". Now i want to get process name and don't known what should i...

View Article


Image may be NSFW.
Clik here to view.

why the photon isn't affected by electro-magnetic field at all?

title say all.... .....if you are gonna say that it doesn't have charge thats why..then restudy yar book

View Article

CreateRemoteThread() fails on protected AV process?

Hi, I used code cave injection to inject into normal processes, and it worked successfully (LOL). But when I inject into AvastUI.exe it dont work. Anyone help? Im running admin account,...

View Article

OpenMutexA fails in Foreign Process

Hi,    I am 100% sure this is not due to any logical error but compiler mistake anyway I am not jumping to conclusion just yet. But I am calling OpenMutexA in a injected process: #include...

View Article

Image may be NSFW.
Clik here to view.

How to kill antivirus process using c++?

Hi all, I want to kill AV process using c++! I tried A LOT of methods... 1) Used good old TerminateProcess(). 2) Used code cave injection. 3) Used DLL injection. Trying to kill Avast 7 AvastUI.exe. Im...

View Article


Install BHO (Browser Helper Object) in InternetExplorer

Good day, I am search for method to install BHO in Internet Explorer without admin rights. In the internet you can find many sources how install COM objects (BHO same) without admin rights, but BHO...

View Article

Image may be NSFW.
Clik here to view.

Windows 8.1 64bit msv1_0.dll patch update

  Recently Microsoft has issued a Consumer Preview  for public download of Windows 8.1. I have gone through the msv1_0.dll file to look for the msvppasswordvalidate function in the dll and patch the...

View Article


Binary search problem

typedef struct column { int a; int b; } grid; grid* binarySearch(grid * const x[], int low, int high, int no) { if (high < low) return -1; int mid = (low + high)/2; /*low + (high - low)/2;*/ if (no...

View Article

Image may be NSFW.
Clik here to view.

DLL injection via thread hijacking

This program can injects DLL into running processes using thread hijacking. No remote thread is created, only existing thread is used for injection.   The injector injects shellcode into the target...

View Article


Entry Point Obscuring.

Hello Rohitab, I've been writing an EPO program and so far I've been able to find a call opcode and get the RVA from the following address in the binary, then parse the IAT to get names of functions...

View Article

sqlite3 problem

hi all ....   got a crash on :   sqlite3_open(pathto.sqlite, (sqlite3**)db);   any ideas   using win7 devc++ 4.9.9.2

View Article

Hooking API in Delphi

Hai,   Please I wanted to do hooking in Delphi.  I understand hooking is intercepting functions and introducing your own line of code to perform your own instructions. Kindly look at this code and help...

View Article
Browsing all 4637 articles
Browse latest View live