ALERT!
Click here to register with a few steps and explore all our cool stuff we have to offer!

Jump to content

droid151's Content

There have been 104 items by droid151 (Search limited from May 19, 2023)


By content type

See this member's


Sort by                Order  

#32408171 Die komplette Unity & C# Masterclass - Entwickle 5 Spiele

Posted by droid151 on 06 February 2021 - 04:15 AM in C/C+

there isnt a chsarp section, it should fit the "other languages" section but there is the variety to big in my opinion (java, python, java script, golang, .... ) 

so i think it fits here better and is easier to find for interested people. 

I apologize then, I guess my mind automatically put c# to .NET section




#32407333 Die komplette Unity & C# Masterclass - Entwickle 5 Spiele

Posted by droid151 on 06 February 2021 - 03:40 AM in C/C+

@Alexej27 sorry if am wrong, but shouldn't c# threads belong to different forum in this section?




#32405190 Python Bootcamp: Vom Anfänger zum Profi, inkl. Data Science

Posted by droid151 on 06 February 2021 - 02:16 AM in Other languages

Don't speak german, so I probably won't use it. But great contribution nonetheless, thank you.




#32393637 ipk/unknown file reverse (newbie question)

Posted by droid151 on 05 February 2021 - 02:07 PM in General Chat

Is a binary file, sorry, I'm stupid

Yes it should be possible. That's the reason tools like IDA exist. Look around the reversing guides section here (https://www.nulled.t...uides-and-tips/), there is bound to be a few tutorials already posted on the subject.




#32367307 OfferUp Geolocation?

Posted by droid151 on 03 February 2021 - 07:06 PM in General Chat

Not directly, no. You can find some potentially useful info there but chances are you will need more information. Or 4chan level of autism.




#32367197 ipk/unknown file reverse (newbie question)

Posted by droid151 on 03 February 2021 - 06:56 PM in General Chat

Hello guys, I'm a really newbie and wanted to know if is possible to reverse an unknown file, maybe is an .ipk

what do you mean by "unknown file"?




#32367124 Facebook Group Post Scrapper [ Help Needed ]

Posted by droid151 on 03 February 2021 - 06:50 PM in General Chat

Thanks for your comment but Facebook does not provide API access for other's groups. That is why I want to make 3rd party app for scrapping Facebook group posts.

I see now. So without an API you are practically bound to use browser to see group's feed. At least if you want to scrap posts from private groups. So it seems that selenium would be the way to go.

Again I would use go for that task for performance and smaller memory footprint but if you are more comfortable something else selenium has drivers for pretty much any language.




#32350396 I NEED FAKE CONFIRMATIONS / TEMPLATES

Posted by droid151 on 02 February 2021 - 06:22 PM in HTML, CSS, JS & PHP

bump I need this found for me

Try asking on a marketplace




#32350216 Facebook Group Post Scrapper [ Help Needed ]

Posted by droid151 on 02 February 2021 - 06:10 PM in General Chat

I need to collect Facebook group posts with media (Image/Video). Which technology should I choose to get Best and smooth performance? I'm familiar with VB.NET

I didn't do facebook coding for a long time now, but my first choice would be go (+ facebook's graph api of course)




#32277728 closed.

Posted by droid151 on 29 January 2021 - 02:26 AM in Service Requests

sure




#32277594 closed.

Posted by droid151 on 29 January 2021 - 02:13 AM in Service Requests

@impurple have you tried this https://support.disc...el32-dll-errors




#32161001 NEED small job for $10

Posted by droid151 on 20 January 2021 - 08:41 PM in Favors & Rewards

gl in finding something :tea:

Thank you. I mean it's not really life or death, but it would make me happy.




#32160807 NEED small job for $10

Posted by droid151 on 20 January 2021 - 08:26 PM in Favors & Rewards

I will do small job for $10.  I need to buy nitro tomorrow. Backgrounds in math, programming, coding and sys engineering.

EDIT: found it




#32150040 [ PYTHON ] Selenium with proxy authentication

Posted by droid151 on 20 January 2021 - 01:47 AM in General Chat

ping me on discord




#32145146 [ PYTHON ] Selenium with proxy authentication

Posted by droid151 on 19 January 2021 - 07:28 PM in General Chat

@Nearby I did some digging today and this should do it, here is the script

#!/usr/bin/env python3
 
from seleniumwire import webdriver #I ended up using seleniumwire (pypi.org/project/selenium-wire) instead of vanilla
 
#tested with trial acc form ProxyMesh (authed)
PROXY_HOST = ''
PROXY_PORT = ''
PROXY_USER = ''
PROXY_PASS = ''
 
options = webdriver.ChromeOptions()
options.add_argument('--headless')
options.add_argument('--no-sandbox')
 
seleniumwire_options = {
        'proxy': {
            'http': 'http://'+PROXY_USER+':'+PROXY_PASS+'@'+PROXY_HOST+':'+PROXY_PORT
        } 
    }
 
driver = webdriver.Chrome('./drivers/chromedriver', options=options, seleniumwire_options=seleniumwire_options)
driver.get("http://httpbin.org/ip")

print(driver.page_source)
driver.quit()

screenshot (proxymesh's ip): https://imgur.com/6yyD1jH.png

 

I hope this helps you