Forsheeezy

Results 7 comments of Forsheeezy

Hi, I also wasn't able to reach MSSQL on Gohan via nmap. How did you make MSSQL accessible?

`sa:Password1` were the credentials that I found when I ran `cme smb discovery/hosts/windows.txt --local-auth -u sa -p focused-penetration/passwords.txt` from the `pentest` virtual machine. I think those are the local account...

Hi, @arcivanov I understand that in PyB you can customize the location of your sources in the tree (defaulting to src/main/python), but in package they'll always be on top even...

Thank you, so should it be: ``` ├── __pycache__ │   └── build.cpython-38.pyc ├── build.py ├── pyproject.toml ├── setup.py └── src └── main ├── python │   ├── __init__.py │   └── main.py...

Unfortunately, after running `pyb` it still ends up at the project root level. I feel like I am missing something obvious.

I am trying to make the source and target package structure mirror each other. I want the target dist to look like this: Where `main.py` is in `src/main/python` instead of...

> PS: As a second thought, you don't need the `__init__.py` at all. You can delete it. Thank you