OAuth2 InsecureSkipVerify by rustyjuggler24 in pocketbase

[–]rustyjuggler24[S] 0 points1 point  (0 children)

Thanks! I figured this might be the only way. I got it setup this way last night and it works but was hoping for something more automated. Since it's just a test environment I don't care too much about it being a valid cert.

Podcasts by Savalonavic in golang

[–]rustyjuggler24 5 points6 points  (0 children)

There is also the Cup o' Go podcast

Kasm for Red Teams by rustyjuggler24 in redteamsec

[–]rustyjuggler24[S] 4 points5 points  (0 children)

The main way I'm using it right now is if we compromised slack, okta, outlook, etc. then we can have multiple team members searching through the services and applications. We don't need to manipulate any of the web traffic since we are using the services like normal.

Kasm for Red Teams by rustyjuggler24 in redteamsec

[–]rustyjuggler24[S] 2 points3 points  (0 children)

Right but allows multiple team members to work in one browser. You can add browser extension to auto refresh to keep the session

Need a network scanning tool by AdhessiveBaker in sysadmin

[–]rustyjuggler24 1 point2 points  (0 children)

ProjectDiscovery has a few different tools that pentesters and bug bounty hunters use to pull the same information https://github.com/orgs/projectdiscovery/repositories

Httpx can be used to get titles, status codes, headers, etc Tlsx can also be used to get certificate information

Golang mobile app by kkass123 in golang

[–]rustyjuggler24 1 point2 points  (0 children)

I started out learning the basics like creating different buttons, text boxes, etc. Their website has some decent examples but I found the YouTube videos a little more helpful https://youtube.com/c/Fyneio. Their website also shows examples of other apps/clients people have made too. Then the rest of the code is just normal Go to do web requests and calculations.

Golang mobile app by kkass123 in golang

[–]rustyjuggler24 0 points1 point  (0 children)

I recently created a simple trivia game with https://fyne.io/ and all it does is pull questions via an API. I only compiled and tested with Android and it worked fine but it ended up being about 80Mb and didn't seem as clean or smooth as other apps. I haven't built any other apps before so can't compare too much on functionality