Search found 7 matches

by Neutrino
Sun Dec 03, 2006 3:19 am
Forum: General Discussion
Topic: AVIRA's AntiVir doesn't like PB
Replies: 36
Views: 7505

This AV is bullshit it detects the TR/Dldr.Stration.I TROJAN in mirc.exe ,too
by Neutrino
Sun Dec 03, 2006 3:15 am
Forum: General Discussion
Topic: my code: inject and extract a string into an png image
Replies: 0
Views: 769

my code: inject and extract a string into an png image

hello everyone,

this is a quick and dirty code to inject (and extract) a string into an png image. Feel free to use it in your applications.


;this code is GPL
;codet by Neutrino

UsePNGImageDecoder()
UsePNGImageEncoder()

Declare ConvertCharToRGB(char.s)
Declare InjectStringToImage(FileName.s ...
by Neutrino
Sat Dec 02, 2006 2:41 am
Forum: Coding Questions
Topic: setpixel
Replies: 4
Views: 1155

Thank you very much :)
by Neutrino
Sat Dec 02, 2006 1:55 am
Forum: Coding Questions
Topic: setpixel
Replies: 4
Views: 1155

I used this procedure to create the image :



Procedure CreateEmptyDataImage(filename.s)
If CreateImage(2,1025,1,32)
SaveImage(2,filename,#PB_ImagePlugin_JPEG,10)
ProcedureReturn #True
Else
ProcedureReturn #False
EndIf
EndProcedure


then I called the function with

createemptydataimage("c ...
by Neutrino
Sat Dec 02, 2006 1:14 am
Forum: Coding Questions
Topic: setpixel
Replies: 4
Views: 1155

setpixel

I want to use the SetPixel Api to draw a pixel in an image that I loadet with the LoadImage Purebasic function but the Api fails(Return Value is -1). This ist the code that I wrote :


UseJPEGImageEncoder()
UseJPEGImageDecoder()

If LoadImage(1,"c:\test23.jpg")

hdc = StartDrawing(ImageOutput(1 ...
by Neutrino
Sat Nov 25, 2006 7:58 pm
Forum: General Discussion
Topic: /Device/PhysicalMemory (read / write access)
Replies: 1
Views: 2257

/Device/PhysicalMemory (read / write access)

Hello *,

I´ll played around with the "/device/PhysicalMemory" object. I read a interessting from Phrack. I´ts possible to get read/write access to that object.

the first 5 Steps are :

1) Open a handle to \Device\PhysicalMemory (NtOpenSection)
2) Retrieve the security descriptor of it ...
by Neutrino
Fri May 12, 2006 10:55 pm
Forum: Coding Questions
Topic: Inline ASM Help
Replies: 12
Views: 2568

Hello ,

It´s Possible to access Ring 0 without a kernel mode driver. You can setup a call gate to do this. A call gate is a mechanism in x86 Processors to run code in Ring0 for more information take a look at

http://board.flatassembler.net/topic.php?t=2974

or

http://www.codeproject.com/system ...