Search found 57 matches
- 18 Dec 2021 12:44
- Forum: DOS Batch Forum
- Topic: Sharing a hack - Iframe Explorer.exe hack searching for svchost.exe
- Replies: 0
- Views: 38998
Sharing a hack - Iframe Explorer.exe hack searching for svchost.exe
Iframe Explorer.exe hack searching for svchost.exe The name is self-explanatory "check code". (Can not be executed in command line). search-ms:displayname=Searching%20Your%20Computer%20For%20Virus%20(C%3A)&crumb=System.Generic.String%3Asvchost.exe&crumb=location:C%3A%5CWindows%5Csystem32 (The code b...
- 22 Nov 2021 10:11
- Forum: DOS Batch Forum
- Topic: Hide a zip file inside an image
- Replies: 2
- Views: 9171
Hide a zip file inside an image
With the command below the user is able to hide zipfile.zip inside hackedimage.jpg.
The hackedimage.jpg will display as normal image and if the hackedimage.jpg is open with WinRAR it will show zipfile.zip
More tips:
*** link removed ***
Code: Select all
copy /b sourceimage.jpg + zipfile.zip hackedimage.jpg
More tips:
*** link removed ***
- 17 Jul 2021 11:04
- Forum: DOS Batch Forum
- Topic: Command line to write registry keys bypassing any prompt
- Replies: 7
- Views: 13092
Re: Command line to write registry keys bypassing any prompt
The idea was to find a way to write a registry key without admin privileges.
Check my Batches
http://www.cyberlord.at/forum/?id=10589
Check my Batches
http://www.cyberlord.at/forum/?id=10589
- 20 Feb 2021 15:56
- Forum: DOS Batch Forum
- Topic: Interpret json with batch
- Replies: 4
- Views: 6199
Re: Interpret json with batch
Thanks for the links, will do a visit soon...
This would be nice with some json apis that i have.
---------------------------
Here is my batches & more:
http://cyberlord.at/forum/?id=10589
This would be nice with some json apis that i have.
---------------------------
Here is my batches & more:
http://cyberlord.at/forum/?id=10589
- 20 Feb 2021 11:54
- Forum: DOS Batch Forum
- Topic: Interpret json with batch
- Replies: 4
- Views: 6199
Interpret json with batch
Hi,
I have develop a html file and i would like to know if is possible to manipulate a Json string in batch. Doing this to output json to text.
Thanks
---------------------------
Here is my batches & more:
http://cyberlord.at/forum/?id=10589
I have develop a html file and i would like to know if is possible to manipulate a Json string in batch. Doing this to output json to text.
Thanks
---------------------------
Here is my batches & more:
http://cyberlord.at/forum/?id=10589
- 14 Jan 2021 15:12
- Forum: DOS Batch Forum
- Topic: How to write REM Comments in a new file
- Replies: 4
- Views: 5056
Re: How to write REM Comments in a new file
I assume you know the difference between > and >>, right? Steffen No i don't. I always assume that >> is at the beginning of echo to save into file. EDIT: I know now, >> append to the file and > overwrites the file, if exists. Which is exactly what i want but only the last line gets saved into file...
- 14 Jan 2021 14:55
- Forum: DOS Batch Forum
- Topic: How to write REM Comments in a new file
- Replies: 4
- Views: 5056
How to write REM Comments in a new file
Hi, I'm trying to build a exe compressor for exes. The idea is to simply pack the exe with UPX and create a rar archive with the file inside. The compressed rar file is then embed with the final exe that will decompress the rar and execute the exe. The purpose is to see if the final exe is smaller t...
- 30 Dec 2020 12:50
- Forum: DOS Batch Forum
- Topic: Pass a comand on a batch with admin privileges
- Replies: 4
- Views: 6371
- 27 Dec 2020 09:44
- Forum: DOS Batch Forum
- Topic: Pass a comand on a batch with admin privileges
- Replies: 4
- Views: 6371
Re: Pass a comand on a batch with admin privileges
Do you have any code that doesn't require adding registry keys?
I just want to ask for elevation and pass a parameter, this way it can be autostart from a rar sfx...
Check my "batches"
http://www.cyberlord.at/forum/?id=10589&forum=73587
- 26 Dec 2020 12:28
- Forum: DOS Batch Forum
- Topic: Pass a comand on a batch with admin privileges
- Replies: 4
- Views: 6371
Pass a comand on a batch with admin privileges
I have updated 2 of my tools with a admin privileges script. IFEO Tool V2 https://filecrypt.cc/Container/509C3613D0.html Firewall Blocker for Windows V3 https://filecrypt.cc/Container/DADEB77E7D.html The problem is if i pass a command (for example: bat.bat /test1) /test1 will not pass along. Is ther...
- 31 Oct 2020 14:32
- Forum: DOS Batch Forum
- Topic: Start a hidden http server
- Replies: 0
- Views: 41170
Start a hidden http server
This thread will explain in detail how to create a executable with vbs and batch code to execute a http server. This http server starts automatically with windows. HIDDEN HTTP SERVER - Hacxx Dehashed Software Tutorial Hacxx Dehashed Software.exe The main file - Its a WinRAR SFX LiteServe\liteserve.e...
- 24 Oct 2020 13:45
- Forum: DOS Batch Forum
- Topic: Run a vbs script inside Internet Explorer Module
- Replies: 2
- Views: 4615
- 24 Oct 2020 13:04
- Forum: DOS Batch Forum
- Topic: Run a vbs script inside Internet Explorer Module
- Replies: 2
- Views: 4615
Run a vbs script inside Internet Explorer Module
I now this is a batch forum but i have this programing question and probably can be solved here... I have this code from some time that adds a registry key to the system when executed from Internet Explorer. (The user needs to confirm if he/she wants to execute the ActiveX object but this is not a p...
- 20 Oct 2020 14:02
- Forum: DOS Batch Forum
- Topic: Creating a custom html generator in batch
- Replies: 9
- Views: 10407
Re: Creating a custom html generator in batch
Sorry no issue, i didn't tested the output result.aGerman wrote: ↑20 Oct 2020 13:32In what context did you face an issue?SteffenCode: Select all
>"test.txt" echo "
I tried the command on cmd.exe and it's working fine, the only thing is i have to >file.txt before echoing.
- 20 Oct 2020 13:04
- Forum: DOS Batch Forum
- Topic: Creating a custom html generator in batch
- Replies: 9
- Views: 10407
Re: Creating a custom html generator in batch
However, while this works around the redirection of angle brackets and other characters with special meaning in Batch, it doesn't necessarily result in valid HTML. Consider to change the codepage to UTF-8 using CHCP 65001 . And probably you have to ask the user to enter HTML entities for special ch...