+5 votes
1 view
can you help me with hack doubts, i want to know how i can make my own runtime crypter, how to make a veil evasion backdoor or any other not be detected by antivirus, in short, how to hack a computer without getting caugh.

I'm not going to buy anything

My email = [email protected]
in Technology by (330 points)

3 Answers

+2 votes
Hi, it depends, can you give us more information, like is it for mac, windows or linux. And you need to think of a way to deliver your crypter. It is not that easy, there is no general answer to that , each system is individual, meaning maybe it is already patched, so no known cve's. The first step is gathering information about your target, then you can prepare an attack which is designed for your target. If you wanna find vulnerable systems go to shodan.io.

Short answer, there is no answer. Learn the basics first.
by (400 points)
it's for windows
+1 vote
rubber ducky

u can make it from normal usb

but otherwise u might considering use metasploit
by (8.2k points)
How do I make a rubber ducky from a normal usb?
+1 vote
It depends in the WWW u can use a VPN to be safe
by (21.0k points)
eh VPN's are just smoke & mirrors really needs 3 different proxys. write scripts for a Forward Proxy a Reverse Proxy and a Transparent Proxy the first will hid IP the 2nd will give secure connection while hiding your location completely, and the third will speed up your connection while you can deploy a VPN over this to give yourself the safety that a VPN alone just cannot grant you. crearting a socket looks like this

```python
# Server script
import socket

#Create a Socket object
server_socket =
socket.socket(socket.AF_INET,
socket.SOCK_STREAM)

#Get the local machine name
host = socket.gethostname()

#Reserve a port for the service
port = 12345

#Bind to the port
server_socket.bind((host, port))

#Now wait for client connection
server_socket.listen(5)

print("Server listening on port:", port)

while True:
   #Establish connection with client
    client_socket, addr =
  server_socket.accept()
   print('Got connection from', addr)

   #Send a welcome message to the client
   message = "Hello, client! Welcome to
 the server."

client_socket.send(message.encode('utf-
8'))

  #Receive data from the client
 data = client_socket.recv(1024)
 print('Received from client:',
data.decode('utf-8'))

 #Close the connection
client_socket.close()
```

now you will have to fill in the blanks to make it yours but you know this is only one of the proxies you have to build and this is simply a skeleton script atm so hey it is what it is. Keep in mind that I'm not helping with the learn how to hack part because it is always a learning experience especially with all of the reading involved. you might try downloading some books off the DW and I hope you are using somthing more than just a VPN to browse TOR
...