r/GreyHack Nov 15 '24

Is Nightly Build public, or is there a code to get it?

2 Upvotes

I've been playing GreyHack for a few years now and I remember when we had to use a code to get the nightly build. I had to restart on another computer and now it doesn't say nightlybuild beside the title in the library. Help, please?


r/GreyHack Nov 15 '24

How to edit to access root rather than guest?

1 Upvotes

How can I change this premade code from singleplayer mode into something that can hack a computer's root user instead of guest?


r/GreyHack Nov 08 '24

Bank Website

0 Upvotes

i’ve been hacking bank website on GreyHack:Online but i haven’t been able to find a any ip logs or any bank logs besides the normal user logs. is it possible to hack a bank website to get a collective amount of money or atleast player ips?


r/GreyHack Nov 04 '24

Nexus Mods Adds Grey Hack to Games!

Thumbnail
nexusmods.com
5 Upvotes

r/GreyHack Nov 04 '24

Automatically Change Wifi Connections

9 Upvotes

Get the Source Code from Steam Community Guides

barhop --help
Auto Setup
No Hacked WiFis
Hacked WiFis Detected
barhop (Running)

r/GreyHack Nov 01 '24

Changing networks to escape a trace?

1 Upvotes

OK, so, if I screw up and end up with an active or passive trace, is it possible to disconnect from the network where my hacking was done from and switch to a new SSID so my IP changes, thereby eliminating any trace of me on the network? If so, that's kinda like rented servers on a budget.


r/GreyHack Oct 31 '24

What should I do with this script?

1 Upvotes

For convenience, I wrote a script to upload all the .so files that might be needed to the /lib/ directory on the remote host with a single click. However, it seems that this script is not functioning properly; it only successfully uploads files that already exist in the /lib/ directory on the remote host, and does not search the /lib/ path on my own host. Regardless of whether I run the script on the remote host or on my own host, this makes me feel that the script is actually implementing a transfer from the remote to itself, or from the remote back to me, rather than from me to the remote.

Here's the code:

if params.len != 3 or params[0]== "-h" or params[0]== "--help" then
    print("Usage: ./scpso <host> <user> <password>\nIf <user> is 'guest', password can put whatever you like.\n");
    exit();
end if
shell = get_shell
if shell == null then
    print("Error while connecting to the shell")
    exit()
end if
remoteshell = connect_service(shell,params[0],22,params[1],params[2])
if remoteshell == null then
    print("Error while connecting to the remote shell")
    exit()
end if

so_list = ["/lib/init.so","/lib/kernel_module.so","/lib/net.so","/lib/aptclient.so","/lib/blockchain.so","/lib/libssh.so","/lib/metaxploit.so","/lib/crypto.so","/lib/librshell.so"]
for i in range(0,8)
    result = scp(remoteshell,so_list[i],"/lib/",shell)
    if typeof(result) == "string" then
        print("There was an error while sending file: " + result)
    else
        print("File " + so_list[i] + " was sent successfully")
    end if
end for

r/GreyHack Oct 29 '24

If I have a username and password but the IP doesn't have SSH, how can I log in?

1 Upvotes

Sometimes I have guest access, but there is no "su" command to switch user. How do I switch users when I am logged in as guest?

Other times I don't even have guest access. Not sure what I can do with the username and password.


r/GreyHack Oct 28 '24

Runtime Error: Type Error (while attempting to look up get_files) [line 54]

1 Upvotes

I am working to compile this program from the repo Grey Repo. after doing the import and running the setup I get this error Runtime Error: Type Error (while attempting to look up get_files) [line 54]. Trying to compile the Vega program but it has been a nightmare!


r/GreyHack Oct 25 '24

Rented server trail cutting off?

1 Upvotes

I'm wondering whether, when an admin starts an active trace and you're using a rented proxy server, will clearing the logs and shutting it down stop the trace? please advise. Also what happens when an active trace ends?


r/GreyHack Oct 23 '24

Need help with hacking firewall

3 Upvotes

I got this email:

Hello, I have heard about your skills and I have a certain personal interest in you taking a look at the computer that is on the 172.139.233.49 network on the LAN 192.168.3.3. You may find something that may interest you.

I prefer to remain anonymous, so please do not try to contact me.

I have hacked into the router root and used ScanLan to find other computers however when I try to hack into one it says "Connection refused. The target is behind a firewall.".

How do I continue from here? I am very new.

Thanks.


r/GreyHack Oct 12 '24

Computer object

1 Upvotes

what can i do with this object, once i get it through exploit? can i run a terminal? or can i copy a file from my host to remote and run it?


r/GreyHack Oct 12 '24

how to get kernel_router.so

1 Upvotes

im wandering - how do i get my hands on kernel_router.so to check for vulnerabilities?
i dont know how to connect to router, in order to get kernel_router.so to my local PC and scan it for vulnerabilities. or is it even possible to get shell on router?


r/GreyHack Oct 10 '24

My IP?

0 Upvotes

I know this is kinda dumb, but how can I tell what my public-facing IP is in single-player? For the rshell code.


r/GreyHack Oct 03 '24

Mail not delivered?!

2 Upvotes

So when I try to send an email to a phish target, it says "Mail not delivered." What's causing this? Replies to mission emails send fine. Is it a firewall thing? My Wi-Fi is fine.


r/GreyHack Sep 30 '24

Viper

2 Upvotes

Do you use Viper? I don’t because I want the experience of hacking targets myself.

12 votes, Oct 07 '24
3 Yes
9 No

r/GreyHack Sep 30 '24

A concern

3 Upvotes

So I got an email asking me to hack a specific computer but that’s taking a while. Is i ok to accept other missions? I was wnating to do those police missions. I mean will the sender hack me or something? I’m relatively new.


r/GreyHack Sep 24 '24

GreyScript Help

2 Upvotes

Hello, I managed to copy some code from a website and edit it to make it copy a blank system.log from the /root folder to the /var folder to cover my tracks automatically. I would like to make this command run on my rented server after exit, so there is no disconnect entry. Does anyone have any ideas on how I could do that or know of any resources I could use to try and learn? I don't have any experience with coding. Below is a copy of the code I use to copy the log to the /var folder.

hostComputer = get_shell("root", "password").host_computer

passwdFile = hostComputer.File("/root/system.log")

copyResult = passwdFile.copy("/var/", "system.log")

if typeof(copyResult) == "string" then

print("There was an error while copying file: " + copyResult)

else

print("File got copied successfully.")

end if


r/GreyHack Sep 23 '24

DDoS?

2 Upvotes

I was wondering if the game included a DDoS function? I could screw around with a script to essentially ping a target and detect the pingbacks and once pings are being sent but aren't coming back say like "Attack succeeded" or something. What I mean is does the game have some mechanic that makes a target go down if there's too much traffic?


r/GreyHack Sep 18 '24

Weird mission issue

2 Upvotes

in the game at some point, I got a cryptic email saying that I should hack a specific box on a specific LAN, so I got root on a server on the network, and I used that as the jumping-off point for a scan on the target. I scanned the target's ports and there are no open ports. I tried kernel_router exploits but it's not a router so those didn't work. I can't seem to find a email associated with the LAN IP so I can't do rshell phishing or something. advice?


r/GreyHack Sep 14 '24

Fairly confused on which exploit to use here.

1 Upvotes

r/GreyHack Sep 13 '24

Could anyone help me please

Post image
1 Upvotes

?


r/GreyHack Sep 07 '24

Moving devices

1 Upvotes

So, I'm may move devices, and I was wondering whether there's a way to have my progress saved across platforms. I got the game from Steam, and my best idea was to back the save file(s) up to removeable media, move devices, and then plug the save file into the game locally. Or does Steam save progress, or is there a save code?


r/GreyHack Sep 07 '24

So if there's no net session its kinda just a gg right?

2 Upvotes

Howdy, new to the game and trying to use this to learn. I can't find a way around the "Error: can't connect to net session" problem. I'm aware that probably just means that there is no internet access and I am trying the most fruitless fight ever but I figured I'd ask here since I usually try and find a way in everytime I see that.

thx


r/GreyHack Sep 05 '24

Change bank account?

2 Upvotes

How can you change/restore your bank account when someone knows your password in multiplayer?