Search found 81 matches

by boyoss
Wed Jan 29, 2025 4:23 pm
Forum: Coding Questions
Topic: RunPE No Longer Works on Windows 24H2 (0xc0000141 Error) – Need Help :)
Replies: 16
Views: 5079

Re: RunPE No Longer Works on Windows 24H2 (0xc0000141 Error) – Need Help :)

I've spent hours testing different approaches, trying to integrate the suggestions you provided, including the insights from DeepSeek AI. Unfortunately, I still haven't been able to get it to work properly on Windows 24H2.

The information about MEM_PRIVATE to MEM_IMAGE changes in the Windows loader ...
by boyoss
Wed Jan 29, 2025 12:42 am
Forum: Coding Questions
Topic: RunPE No Longer Works on Windows 24H2 (0xc0000141 Error) – Need Help :)
Replies: 16
Views: 5079

Re: RunPE No Longer Works on Windows 24H2 (0xc0000141 Error) – Need Help :)

Thank you.
If you provide me a working code i'll pay you 100 dollars..
by boyoss
Fri Jan 24, 2025 12:15 am
Forum: Coding Questions
Topic: RunPE No Longer Works on Windows 24H2 (0xc0000141 Error) – Need Help :)
Replies: 16
Views: 5079

Re: RunPE No Longer Works on Windows 24H2 (0xc0000141 Error) – Need Help :)

Hi everyone,
I got help from DeepSeek AI to prepare an updated version of the RunPE code, but now I'm getting a 0xc00004ac error.

Does anyone know if there's a way to fix this, or should we assume this method simply won't work anymore with recent Windows versions?

Here's the new code I'm trying ...
by boyoss
Thu Jan 23, 2025 10:09 pm
Forum: Coding Questions
Topic: RunPE No Longer Works on Windows 24H2 (0xc0000141 Error) – Need Help :)
Replies: 16
Views: 5079

Re: RunPE No Longer Works on Windows 24H2 (0xc0000141 Error) – Need Help :)

I just want to clarify that my software is a serious, fully legitimate application—it's even certified by Microsoft.
The “injection” reference in my post simply describes how I’m protecting the program in memory, rather than distributing the original, unprotected file.

This is purely a security ...
by boyoss
Thu Jan 23, 2025 12:12 am
Forum: Coding Questions
Topic: RunPE No Longer Works on Windows 24H2 (0xc0000141 Error) – Need Help :)
Replies: 16
Views: 5079

Re: RunPE No Longer Works on Windows 24H2 (0xc0000141 Error) – Need Help :)

you mean like this? same problem... :( :?
Procedure RunPE(lBuff.i, parameters.s)

; http://forums.purebasic.com/english/viewtopic.php?p=311116&sid=71318ad4a9f408ffe97d5eb450eef191#p311116

Protected *idh.IMAGE_DOS_HEADER = lBuff

Protected *ish.IMAGE_SECTION_HEADERS

Protected pi.PROCESS ...
by boyoss
Wed Jan 22, 2025 11:56 pm
Forum: Coding Questions
Topic: RunPE No Longer Works on Windows 24H2 (0xc0000141 Error) – Need Help :)
Replies: 16
Views: 5079

RunPE No Longer Works on Windows 24H2 (0xc0000141 Error) – Need Help :)

Hi everyone! :D

I’ve been using a custom RunPE (memory injection) routine in my PureBasic project for years without any issues. It’s basically a method that “wraps” my main executable, asks for a password, and then launches it—just an extra layer of protection. I originally found the code here ...
by boyoss
Thu May 14, 2020 10:48 am
Forum: Coding Questions
Topic: SysTrayIcon disappears after restarting the explorer process
Replies: 1
Views: 1172

SysTrayIcon disappears after restarting the explorer process

Attached a basic code from SysTrayIcon.
Everything is fine, but if I restart the Windows Explorer process, the SysTrayIcon disappears.
I tried doing IsSysTrayIcon() but it still seems to be active (although it doesn't appear).
Thank you for your help ...
by boyoss
Wed May 29, 2019 4:50 pm
Forum: Windows
Topic: Windows service
Replies: 19
Views: 15013

Re: Windows service

I've found how to send paramters

path.s = GetPathPart(Mid(sExeName, 1, FindString(sExeName + " ", " ")))
file.s = Mid(sExeName, Len(path) + 1)
ProcedureReturn(CreateProcessAsUser_(hUserTokenDup, ;Client's access token
#Null, ;File to execute
@file, ;Command line
@SecurityAttributes, ;Pointer ...
by boyoss
Fri May 24, 2019 8:37 am
Forum: Windows
Topic: Windows service
Replies: 19
Views: 15013

Re: Windows service

@Pierre Bellisle Thanks for the excellent code
@Rings Thanks for bringing it here

It will be usefull to have a possibilty to send paramters to the program launched that way
by boyoss
Fri Mar 29, 2019 8:10 am
Forum: Coding Questions
Topic: WinDivert 2.0, $50 reward
Replies: 0
Views: 1281

WinDivert 2.0, $50 reward

Basil has released a new version of WinDivert ( https://github.com/basil00/Divert/releases/tag/v2.0.0-rc ), I saw that it could filter according to the ProcessID.
I would like to use it for my famous project, a program that filters the Internet traffic of the computer.
For now, what I'm doing is ...
by boyoss
Tue Mar 12, 2019 8:00 pm
Forum: Coding Questions
Topic: Blacklist|Whitelist URL with Windivert
Replies: 2
Views: 1537

Blacklist|Whitelist URL with Windivert

Based on the work of JHPJHP, WinDivert, i'm trying to build an application of Blacklist and Whitelist URL.
I came across this project ( https://it.bmc.uu.se/andlov/proj/sec/urlfilter/ ), and wonder how is it possible to translate it to purebasic.

It's written in c++, and i will be very thankfull if ...
by boyoss
Tue Jun 19, 2018 12:48 pm
Forum: Coding Questions
Topic: Filtering Internet traffic
Replies: 6
Views: 2354

Re: Filtering Internet traffic

The code is not working.. i can still access the purebasic site.

What do you mean create a driver, is iy possible with Purebasic? Ot is there maybe an open source that i can use (and combine it with Purebasic)

Thanks
by boyoss
Tue Jun 19, 2018 9:21 am
Forum: Coding Questions
Topic: Filtering Internet traffic
Replies: 6
Views: 2354

Filtering Internet traffic

Hello everybody
I went back to my old project, which I never finished ...

So here it is, the goal is to create software that restricts computer access to the Internet and only allows certain sites and programs. To be more precise, this program is intended for secretaries in the office, and must ...