3 Antworten
+ 1
Adi , congratulations on beginning your Python journey.Your aim on using it on bug bounties is admirable and practical.
I take this opportunity to suggest you to ensure your Python fundamentals are solid before you delve deeper into security or bug bounties. Since you mentioned being comfortable with variables, lists,for ... in loops, you might want to explore data types (starting with int,bool, str ect. and then moving on to set, tuple,dict)and control flow(if,elif,else,while) which will later help you to react to conditions in bug bounties.
Bug bounty tools deal with websites that might crash, block, or timeout, so try learning Exception handling(try,except).
Consider learning writing and calling functions with def as you’ll need them to build reusable tools.Most of your bug bounty work will require string manipulation(eg:for parsing inputs & payloads).
Try learning how to import & use libraries(eg,requests)
In addition to all these, remember to practice regularly and also consider building small projects.
0
You should learn HTML
0
Yes