A RESTful API for gateCracker tool that provides default password information for Smart Locks in Turkey.
This API is required to run the gateCracker tool. The gateCracker application connects to this REST API running on localhost:8080 to retrieve lock model information and default passwords.
Blog Post: https://aydinnyunus.github.io/2022/01/07/bypassing-door-passwords/
# Clone the repository
git clone https://github.com/aydinnyunus/gateCracker-REST.git
# Navigate to the directory
cd gateCracker-REST
# Install dependencies
go mod tidy
# Run the API server
go run main.goThe API will be available at http://localhost:8080
├── go.mod
├── go.sum
├── simple.go
└── main.go
Get all smart locks
Get a specific smart lock by ID
Example: GET http://localhost:8080/smartLocks/1
- Start this REST API server:
go run main.go - Make sure the API is running on
http://localhost:8080 - Run the gateCracker tool which will connect to this API
- Medium: https://sockpuppets.medium.com/bypassing-door-passwords-4004b8d7995
- GitHub Pages: https://aydinnyunus.github.io/2022/01/07/bypassing-door-passwords/
If you find a bug or would like to request a new feature, please open an issue here.