Skip to content

Instantly share code, notes, and snippets.

@3rg1s
Created December 15, 2020 12:03
Show Gist options
  • Save 3rg1s/529e92b7759c1bf9b9dbd8f2900dd3e9 to your computer and use it in GitHub Desktop.
Save 3rg1s/529e92b7759c1bf9b9dbd8f2900dd3e9 to your computer and use it in GitHub Desktop.
Trick 13033 by sending sms to your own number and getting instant response.

As COVID rises you are asked to use a movement certificate form or by sending a sms to 13033 In GREECE.

The data policy located here as per 9 April 2020 states that our message is deleted once we get the response back. And the message information is deleted or anonymized and used for statistical purposes.

If you use signal you can edit the sender number name as 13033 which will show as 13033 thus making it nearly impossible for someone to notice that this is not a number you are sending the sms to.

import os, time 

sender_num = "+30"
receiver_num = "+30"

def sendmessage(message):
    os.system("./signal-cli -u '%s' send -m '%s' '%s' " % (sender_num, message, receiver_num))
    print("[*] Message was send " + message)
    


def receivemessage():
    message_recv = os.popen('./signal-cli -u \'%s\' receive -t 2 | grep \'Body:\' | sed \'s/^.*: //\' '  % sender_num).read().strip() 
    if message_recv != "":
        print("[*] Message received: " + message_recv)
        print("[*] Adding `ΜΕΤΑΚΙΝΗΣΗ` in front of message")
        message_recv = "ΜΕΤΑΚΙΝΗΣΗ " + message_recv
        sendmessage(message_recv)
    else:
        pass        
    time.sleep(4)


while True:
    receivemessage()

Signal-cli is used in this script. Download it, then verify the sender number. Add the number in the script and also add your number(receiver) in the script. Please make sure to have the signal-cl shell script in the same directory as the script. Run the script with python3 and see the magic happens.

I do not take any responsibility if you get caught and fined by doing this. I used this ONLY FOR EDUCATIONAL PURPOSES. AND NEVER IN A WAY TO TRICK THE GREEK GOVERNMENT.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment