Coder Social home page Coder Social logo

pentagridsec / smsgate Goto Github PK

View Code? Open in Web Editor NEW
147.0 8.0 27.0 137 KB

SMSgate is an open source Python-based server for sending and especially receiving SMS using multiple GSM modems and SIM cards.

Home Page: https://www.pentagrid.ch/en/blog/open-source-sms-gateway-for-pentest-projects/

License: Other

Python 99.79% Shell 0.21%
sms-api sms-client sms-gateway pentesting-tools

smsgate's People

Contributors

floyd-fuh avatar nitram2342 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

smsgate's Issues

Automatic port detection

I have an idea, if we could scan all the port in pc to find the possible modem port, and test all of it, then add it to the config automatically. After the first initialization, if there are any port changes, it could update the data automatically based on the imei, and auto disabling the port if imei doesn't found on second scan attempt.

And maybe this is as all of us want, complete API documentation, for this tool.

Below is my example snippet, for scanning possibly modem port, maybe it could help :

def find_all_port():
    all_port_tuples = list(list_ports.comports())
    all_ports = []
    for port in all_port_tuples:
        if port.device.startswith("COM") or port.device.startswith("ttyACM") or "ttyUSB" in port.device:
                all_ports.append({"portLoc": port.device, "status": ""})
    if len(all_ports) == 0:
        logging.error("No valid port detected!. Possibly, device not plugged/detected.")
        pass
    return all_ports
```

Implement of REST API

Hi, i see this project is so good, to use. But can i ask, why it didnt use REST API and output of JSON, is there any spesific reason?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.