- This topic has 9 replies, 2 voices, and was last updated 4 years, 6 months ago by Diego Pérez.
- AuthorPosts
- May 18, 2020 at 9:56 am #37225Sithum Nimlaka AbeydheeraParticipant
Zaid,
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érezModeratorHi 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 AbeydheeraParticipantCan you pass this to zaid ? Because i saw a video he use this.
May 20, 2020 at 6:01 am #37421Diego PérezModeratorHi 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 AbeydheeraParticipantCan you tell best free sms gateway ?
May 21, 2020 at 6:15 am #37543Diego PérezModeratorHi 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 AbeydheeraParticipantOkay Diego
May 22, 2020 at 6:37 am #37681Diego PérezModeratorHi Sithum!
Cool!Let me know if you got it to work.
DiegoMay 23, 2020 at 9:02 am #37818Sithum Nimlaka AbeydheeraParticipantDiego,
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érezModeratorHi 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.