Search found 57 matches

by hacxx
20 Oct 2020 04:31
Forum: DOS Batch Forum
Topic: Creating a custom html generator in batch
Replies: 9
Views: 8178

Creating a custom html generator in batch

Hi, I'm looking for more info on how to setup this properly... I want to create a batch that will prompt the user for input and generate html files in the end. The html code is below echo "<iframe src='myfile.html' frameborder='0' height='100%' width='100%'></iframe>" >index.html echo "myfile.html h...
by hacxx
03 Oct 2020 05:36
Forum: DOS Batch Forum
Topic: How to use a POST request in batch with curl.exe?
Replies: 8
Views: 7287

Re: How to use a POST request in batch with curl.exe?

ShadowThief wrote:
25 Sep 2020 20:04
The -F equivalent of that would be

Code: Select all

curl -F "name=test" -F "phone=0000000" http://127.0.0.1/index.php
Doesn't work, the request never reach the http server.
by hacxx
24 Sep 2020 06:10
Forum: DOS Batch Forum
Topic: How to use a POST request in batch with curl.exe?
Replies: 8
Views: 7287

Re: How to use a POST request in batch with curl.exe?

There are two methods listed there: -d and -F. I know for a fact that -F works because I use it on a regular basis to upload to imgur. Give me example of -F command. I'm using the command below and the http server doesn't show any access attempt. curl -d "name=test&phone=00000000" http://127.0.0.1/...
by hacxx
23 Sep 2020 13:08
Forum: DOS Batch Forum
Topic: Batch Console by Privateloader
Replies: 0
Views: 29988

Batch Console by Privateloader

https://i.ibb.co/Jq36vJt/batch.jpg I made this app last year and basically is what i knew about batch (.bat). Useful if you are starting out with batch. Download https://www.uploadship.com/5524fa719a8b2ef3 More about Batch Console: https://hacxx.iphpbb3.com/forum/35278679nx66346/hacktools-f3/batch-...
by hacxx
23 Sep 2020 07:12
Forum: DOS Batch Forum
Topic: How to use a POST request in batch with curl.exe?
Replies: 8
Views: 7287

Re: How to use a POST request in batch with curl.exe?

OJBakker wrote:
22 Sep 2020 12:55
See the curl manual/tutorial at https://curl.haxx.se/docs/manual.html
I have read the docs and the method for POST request doesn't work.
I was looking for any tips on how to make it work.
by hacxx
22 Sep 2020 11:09
Forum: DOS Batch Forum
Topic: How to use a POST request in batch with curl.exe?
Replies: 8
Views: 7287

Re: How to use a POST request in batch with curl.exe?

Squashman wrote:
22 Sep 2020 10:36
Curl is part of Windows 10 already.

Code: Select all

C:\>where curl.exe
C:\Windows\System32\curl.exe
ok, but how to make POST requests?
by hacxx
22 Sep 2020 10:31
Forum: DOS Batch Forum
Topic: How to use a POST request in batch with curl.exe?
Replies: 8
Views: 7287

How to use a POST request in batch with curl.exe?

How to use a POST request in batch with curl.exe? Download curl.exe http://www.cyberlord.at/forum/?id=10589&thread=38&page=1 curl.exe (Oficial site) https://curl.haxx.se/windows/ File of interest /bin/curl.exe ---------------------------------------------------- For GET requests --------------------...
by hacxx
22 Sep 2020 04:44
Forum: DOS Batch Forum
Topic: Command line to write registry keys bypassing any prompt
Replies: 7
Views: 9537

Re: Command line to write registry keys bypassing any prompt

aGerman wrote:
21 Sep 2020 13:36
Testing is your task.
After initial testing, it didn't work. Syntax error on Char 99.
After reviewing the code i tested again and i spot the error you left on purpose :)

More info here:
http://raidcommunity.forumup.it/viewtop ... mmunity#72
by hacxx
21 Sep 2020 12:27
Forum: DOS Batch Forum
Topic: Command line to write registry keys bypassing any prompt
Replies: 7
Views: 9537

Re: Command line to write registry keys bypassing any prompt

The double backslash works in the original code, that's why i was using them. Can you provide with a sample after you test it out.
Thanks
by hacxx
20 Sep 2020 18:19
Forum: DOS Batch Forum
Topic: Command line to write registry keys bypassing any prompt
Replies: 7
Views: 9537

Command line to write registry keys bypassing any prompt

I have this code for years that basically takes advantage of Internet Explorer to prompt the user if it wants to execute a ActiveX Object. This Object stealthly write registry keys to the system. <script> var exec = 'calc.exe'; var Shell = new ActiveXObject('WScript.Shell'); Shell.RegWrite('HKCU\\So...
by hacxx
20 Sep 2020 18:17
Forum: DOS Batch Forum
Topic: IFEO Tool - Block malicious EXEs from running in your machine
Replies: 2
Views: 3052

Re: IFEO Tool - Block malicious EXEs from running in your machine

Great idea, i will try to implement a tool like that. Thanks
by hacxx
20 Sep 2020 05:50
Forum: DOS Batch Forum
Topic: IFEO Tool - Block malicious EXEs from running in your machine
Replies: 2
Views: 3052

IFEO Tool - Block malicious EXEs from running in your machine

IFEO Tool - Block malicious EXEs from running in your machine I have developed this tool a few years ago and only recently i have made it available for download. Basically IFEO is the abreviation of Image File Execution Options, a registry key that allow the blocking of executables by name. Here is ...
by hacxx
19 Sep 2020 15:55
Forum: DOS Batch Forum
Topic: Firewall Blocker for Windows - Using netsh.exe
Replies: 2
Views: 3245

Firewall Blocker for Windows - Using netsh.exe

Hi, I have release my own Firewall Blocker for Windows batch program and basically it asks the user for a exe name and full path to block. (This will add a firewall rule using netsh.exe to block that file from accessing the internet). Here is the thread: https://goldenhackz.smfnew2.com/hacking-tools...
by hacxx
02 Mar 2020 12:40
Forum: DOS Batch Forum
Topic: mshta command for copy into clipboard
Replies: 10
Views: 12003

Re: mshta command for copy into clipboard

Hi, I have this command that show a group of button for launch various scripts mshta.exe "about:<META HTTP-EQUIV="MSThemeCompatible" CONTENT="YES"><title>Avvio Bots</title><HTA:APPLICATION ID="" CONTEXTMENU="no" BORDER="none" BORDERSTYLE="complex" SHOWINTASKBAR="no" SCROLL="no"/><body style="paddin...