Looking for python pentest scripts
Hello, can someone tell about good resource for python related pentesting scripts? any extensive list? Thanks -- https://mail.python.org/mailman/listinfo/python-list
Re: Using Makefiles in Python projects
> On 10 Nov 2019, at 00:09, Skip Montanaro wrote: > > (Sorry, not 100% sure of the credit for this quote, Vitaly, perhaps?) > If your software runs on Windows, of you think it might run on Windows in the future, maybe consider writing simple Python scripts for platform-independent tasks rather than makefiles and shell scripts. > > Maybe try SCons or CMake for cross-platform functionality? > > Chris: > >>> Are you assuming that every Windows system has Python, but that you >>> can't get make or bash? Because neither half of that is true. I've >>> happily used makefiles on Windows, and these days, bash is as easy to >>> get hold of as Python is. > > Thomas: > >> That's why I say "a bit of a hassle". You can get a MSYS set up (whether >> from Git for Windows or otherwise). You can get it to play nice with the >> right Python installation and the Python scripts you presumably want to >> call from the Makefile. But all of that is a bit of a hassle. > > I thought recent versions of Win10 had a full Ubuntu subsystem. Before > that, doesn't something like Cygwin still exist/work? If you are working on native Windows apps then cygwin or WSL will not help you as they hide the Windows world from you. Personally I write .CMD files for the windows stuff I need to mirror the bash .sh scripts I use. They tend to bootstrap up python build tools I use. Barry > > Disclaimer: I am not a Windows person, and managed to avoid it for my > entire career. > > Skip > -- > https://mail.python.org/mailman/listinfo/python-list > -- https://mail.python.org/mailman/listinfo/python-list
Re: Looking for python pentest scripts
On 11/11/19 12:36 AM, nixuser wrote: can someone tell about good resource for python related pentesting scripts? any extensive list? What is the purpose of such scripts/list? -- Regards =dn -- https://mail.python.org/mailman/listinfo/python-list
Re: Looking for python pentest scripts
On Mon, Nov 11, 2019 at 9:38 AM DL Neil via Python-list wrote: > > On 11/11/19 12:36 AM, nixuser wrote: > > can someone tell about good resource for python related pentesting > > scripts? > > any extensive list? > > > What is the purpose of such scripts/list? > C'mon Neil, isn't it obvious? Anyone who uses a pen needs to test it. I think normal unittest should be sufficient to test your pen, though. Assert that, when you remove the cap, press it against paper, and sweep it through a line, that the paper then has a discolouration on it. Or test that when you open the gate in the pen, put an animal inside it, and then close the gate, that the animal is only able to move around within the pen. Either of these should count as pen-testing. Someone just has to write the Python scripts for it. Of course, if the OP is thinking of something entirely different, then perhaps it would help to have a lot more details about WHAT s/he is trying to test... and why. ChrisA -- https://mail.python.org/mailman/listinfo/python-list
Re: Looking for python pentest scripts
Try Googling python pentesting. That will give you some relevant links. On Nov 10, 2019 6:40 AM, "nixuser" wrote: > Hello, > > can someone tell about good resource for python related pentesting > scripts? > any extensive list? > > Thanks > -- > https://mail.python.org/mailman/listinfo/python-list > -- https://mail.python.org/mailman/listinfo/python-list
Re: Looking for python pentest scripts
On 11/10/2019 7:32 PM, Bob Gailer wrote: On Nov 10, 2019 6:40 AM, "nixuser" wrote: can someone tell about good resource for python related pentesting scripts? any extensive list? > Try Googling python pentesting. That will give you some relevant links. I had search 'pentest' to be reminded in this context that 'pentest' can mean 'penetration test', as in "an authorized simulated cyberattack on a computer system, performed to evaluate the security of the system." (Wikipedia (Google's Youtube has multiple sometimes interesting videos where people do penetration tests with bullets and arrows and such against various targets. It turns out the the 'funny-looking' extensions near the top of some medieval plate armor chest pieces serve to block arrow heads deflected up off the chest toward the chin.) -- Terry Jan Reedy -- https://mail.python.org/mailman/listinfo/python-list
Re: Looking for python pentest scripts
http://pentestmonkey.net/ On Mon, Nov 11, 2019 at 12:42 PM Terry Reedy wrote: > On 11/10/2019 7:32 PM, Bob Gailer wrote: > > > On Nov 10, 2019 6:40 AM, "nixuser" wrote: > >> can someone tell about good resource for python related pentesting > >> scripts? > >> any extensive list? > > > Try Googling python pentesting. That will give you some relevant links. > > I had search 'pentest' to be reminded in this context that 'pentest' can > mean 'penetration test', as in "an authorized simulated cyberattack on a > computer system, performed to evaluate the security of the system." > (Wikipedia > > (Google's Youtube has multiple sometimes interesting videos where people > do penetration tests with bullets and arrows and such against various > targets. It turns out the the 'funny-looking' extensions near the top > of some medieval plate armor chest pieces serve to block arrow heads > deflected up off the chest toward the chin.) > > -- > Terry Jan Reedy > > -- > https://mail.python.org/mailman/listinfo/python-list > -- https://mail.python.org/mailman/listinfo/python-list
Re: Using Makefiles in Python projects
On 11/9/19 5:09 PM, Skip Montanaro wrote: > I thought recent versions of Win10 had a full Ubuntu subsystem. Before > that, doesn't something like Cygwin still exist/work? Sure you can install Ubuntu into the WSL2 system, but it's not like you can use that to script things back into Windows land. The WSL2 is essentially a light-weight virtual machine. You can access the windows file system from within it, but so far as I know you can't interact with Windows processes, at least not easily. So no, the WSL is not like cygwin. > Disclaimer: I am not a Windows person, and managed to avoid it for my > entire career. -- https://mail.python.org/mailman/listinfo/python-list
