Metadata-Version: 2.4
Name: route-mapper
Version: 0.0.3
Summary: C# Source Code to API Docs 
Project-URL: Homepage, https://github.com/Skelmis/Route-Mapper
Author-email: Skelmis <skelmis.craft@gmail.com>
License-Expression: MIT
License-File: LICENSE
Requires-Python: >=3.13
Requires-Dist: code-ast>=0.1.2
Requires-Dist: tree-sitter-c-sharp>=0.23.1
Description-Content-Type: text/markdown

Route Mapper
---

A pentest tool aimed at making source code assisted C# testing a little better.

**Problem Statement**
> I got given a C# code base and the webapp doesn't expose Swagger info and the code base doesn't build. What routes exist with what auth, and are any juicy?

---

*Yes, I got nerd snipped into making a proper tool instead of string manipulation + Regex.*

---

### Gotchas

- Everything is a string. It's in the source as `1`? Cool, now it's `"1"`. Types are hard and too complicated for this use-case.