- This topic has 9 replies, 2 voices, and was last updated 4 years, 8 months ago by
Diego Pérez.
- AuthorPosts
- May 18, 2020 at 9:56 am #37225
Sithum Nimlaka Abeydheera
ParticipantZaid,
Can i use this programme to spoof sms ?
https://github.com/websms-com/websmscom-python
You use this too?May 19, 2020 at 7:00 am #37330Diego Pérez
ModeratorHi Sithum!
I have never tried it before but is a python library that uses a webserver service, so I think it can work and should be eas to do it.
Try it out.
Greetings!
DiegoMay 19, 2020 at 12:19 pm #37353Sithum Nimlaka Abeydheera
ParticipantCan you pass this to zaid ? Because i saw a video he use this.
May 20, 2020 at 6:01 am #37421Diego Pérez
ModeratorHi Sithum!
Zaid reviews all answers posted by us (the course teaching assistants) and you’d actially see him commenting here if he had something to add.Have you tried it yet?
Let me know.
DiegoMay 20, 2020 at 6:04 am #37423Sithum Nimlaka Abeydheera
ParticipantCan you tell best free sms gateway ?
May 21, 2020 at 6:15 am #37543Diego Pérez
ModeratorHi Sithum!
this is something you can google for. Developing researcher skills is very important if you want to become a succesful pentester or ethical hacker.
Try it out yourself.Hope it helps!
DiegoMay 21, 2020 at 7:19 am #37554Sithum Nimlaka Abeydheera
ParticipantOkay Diego
May 22, 2020 at 6:37 am #37681Diego Pérez
ModeratorHi Sithum!
Cool!Let me know if you got it to work.
DiegoMay 23, 2020 at 9:02 am #37818Sithum Nimlaka Abeydheera
ParticipantDiego,
I found some good source code for spoof sms. But it is show error. I can’t understand it. Can you help me ?*Source code
————————————————————————————————————–
from clockwork import clockworkapi = clockwork.API(“my api”)
message = clockwork.SMS(from_name=”name”,
to=”number”,
message=”Hello World”)
response = api.send(message)if response.success:
print(response.id)
else:
print(response.error_code)
print(response.error_description)
——————————————————————————————————————-
*error message
——————————————————————————————————————-
PS C:\Users\user> & “C:/Program Files (x86)/Python37-32/python.exe” c:/Users/user/Desktop/clockwork_sms_spoof.py
15
Traceback (most recent call last):
File “c:/Users/user/Desktop/clockwork_sms_spoof.py”, line 13, in <module>
print(response.error_description)
AttributeError: ‘SMSResponse’ object has no attribute ‘error_description’
—————————————————————————————————————–Regards,
Sithum Nimlaka.May 24, 2020 at 5:32 am #37896Diego Pérez
ModeratorHi Sithum!
I don’t know that library but the error saids there’s no attribute error_description, so if you copy this code from a example check that the syntax is correct, if you write it by yourself also check that the name of the attribute is correct. You can refer to library’s documentation.
Hope it helps!
Diego - AuthorPosts
- You must be logged in to reply to this topic.