Use the Ironpython standard Modules (and load other modules)
-
to have the default modules of ironpython available put the content of https://github.com/IronLanguages/ironpython2/releases/download/ipy-2.7.9/IronPython.StdLib.2.7.9.zip to a new folder named "src" inside your OB folder
maybe add other modules you need too
and import stuff inside your python scriptimport sys sys.path.append('./src')
and then you can import the usual way for example like
from binascii import b2a_hex
Of course you can copy other modules into the src folder to be able to import them
-
@meinname Very interesting pity that there are no tutorials on the subject
-
Tutorials for what?
Python?
-
hey @meinname something unrelated but I'd appreciate you unblock you me
-
you're not blocked - we are not friends and/or have no common server.
But on discord I'm barely online these days anyway.
-
@meinname Since the previous message went through I assumed you blocked me, anyways I just wanted to connect with you, OB is really great for pen testing my websites and for learning the logic's of other sites, it would be also really insightful to learn from you as well that's why I was interested, it kinda hurts when you get blocked so just wanted to voice my thoughts, hope you didn't mind.
-
@meinname said in Use the Ironpython standard Modules (and load other modules):
Python
yep
-
The internet is full of python learning material
-
thanks guys
-
what to write in openbullet script in order to import a module????????
-
@nadnad00 you.... you are trolling....right??
-
this is nice to know but is iron python python3? or 2 have never messed with iron python
-
It's python 2.7
-
so after that i can use normal Python syntax in loli script? (without any error)
-
How do I import the Requests module
for example
Please explain more