11 posts
Posted 30 October 2015 - 06:26 PM
Hello There !
I made an API called redproxy
Its working for hide your computer id and trick other computers.
http://pastebin.com/X609jqH1
pastebin get X609jqH1 redproxy
How to use :
os.loadAPI("redproxy")
rednet.open( side )
redproxy.setID( fakeid )
redproxy.send(targetid , msg)
Edited on 31 October 2015 - 01:13 PM
756 posts
Posted 30 October 2015 - 09:29 PM
So this is kind of like Tor?
That's pretty great :D/>
515 posts
Location
Australia
Posted 31 October 2015 - 12:25 AM
So this is kind of like Tor?
That's pretty great :D/>
By the looks of it, it just constructs a rednet message with a faked ID for where the message came from. It doesn't actually tunnel it through other computers.
1715 posts
Location
ACDC Town
Posted 31 October 2015 - 12:42 AM
By the looks of it, it just constructs a rednet message with a faked ID for where the message came from. It doesn't actually tunnel it through other computers.
Why tunnel it through other computers when all you need to do is change the ID to spoof another computer?
11 posts
Posted 31 October 2015 - 08:57 AM
You can use it hack for this program:
id , msg = rednet.receive()
if id == 2 then
print("Successfully logged in !")
end
1583 posts
Location
Germany
Posted 31 October 2015 - 12:36 PM
By the looks of it, it just constructs a rednet message with a faked ID for where the message came from. It doesn't actually tunnel it through other computers.
Why tunnel it through other computers when all you need to do is change the ID to spoof another computer?
maybe because the distance will stay the same. If you are really serious about finding someone you could track them down using the distance.
Also I think this program will, sooner or later, break because the random number is too high (IIRC) because modem channels are limited.
Edited on 31 October 2015 - 11:39 AM
11 posts
Posted 31 October 2015 - 02:52 PM
By the looks of it, it just constructs a rednet message with a faked ID for where the message came from. It doesn't actually tunnel it through other computers.
Why tunnel it through other computers when all you need to do is change the ID to spoof another computer?
maybe because the distance will stay the same. If you are really serious about finding someone you could track them down using the distance.
Also I think this program will, sooner or later, break because the random number is too high (IIRC) because modem channels are limited.
Can you find the distance with a rednet message ?
724 posts
Location
Kinda lost
Posted 31 October 2015 - 04:01 PM
Can you find the distance with a rednet message ?
Directly from rednet_message? No. But rednet messages are send and received using modem messages and in those you can track distance.
Edited on 31 October 2015 - 03:02 PM