Hacking Articles Tips Tricks Videos Tutorials
KitPloit - PenTest Tools! ScheduleRunner - A C# Tool With More Flexibility To Customize Scheduled Task For Both Persistence And Lateral Movement In Red Team Operation https://blogger.googleusercontent.com/img/a/AVvXsEjLvnnXGh9uVr2zU-DiCiJbv6lVXXIf1GMZzej…
rly" (e.g., 1-23 hours) /starttime Specify the start time for daily schedule type (e.g., 23:30) /argument Specify the command line argument for the program /folder Specify the folder where the scheduled task stores (default: \) /author Specify the author of the scheduled task /description Specify the description for the scheduled task /user Run the task with a specified user account
[*] are mandatory fields. ExamplesCreate a scheduled task called "Cleanup" that will be executed every day at 11:30 p.m.
___________________________
@hacking_Attack
@Hacking_Video
[*] are mandatory fields. ExamplesCreate a scheduled task called "Cleanup" that will be executed every day at 11:30 p.m.
ScheduleRunner.exe /method:create /taskname:Cleanup /trigger:daily /starttime:23:30 /program:calc.exe /description:"Some wordings" /author:netero1010Create a scheduled task called "Cleanup" that will be executed every 4 hours on a remote server ScheduleRunner.exe /method:create /taskname:Cleanup /trigger:hourly /modifier:4 /program:rundll32.exe /argument:c:\temp\payload.dll /remoteserver:TARGET-PC01Delete a scheduled task called "Cleanup" ScheduleRunner.exe /method:delete /taskname:CleanupExecute a scheduled task called "Cleanup" ScheduleRunner.exe /method:run /taskname:CleanupQuery details for a scheduled task called "Cleanup" under "\Microsoft\Windows\CertificateServicesClient" folder on a remote server ScheduleRunner.exe /method:query /taskname:Cleanup /folder:\Microsoft\Windows\CertificateServicesClient /remoteserver:TARGET-PC01Query all scheduled tasks under a specific folder "\Microsoft\Windows\CertificateServicesClient" on a remote server ScheduleRunner.exe /method:query /folder:\Microsoft\Windows\CertificateServicesClient /remoteserver:TARGET-PC01Query all sub-folders in scheduled task ScheduleRunner.exe /method:queryfoldersPerform lateral movement using scheduled task to a remote server using a specific user account ScheduleRunner.exe /method:move /taskname:Demo /remoteserver:TARGET-PC01 /program:rundll32.exe /argument:c:\temp\payload.dll /user:netero1010Library and Reference Used:Library Link TaskScheduler https://github.com/dahall/TaskScheduler Reference Link SharpPersist https://github.com/mandiant/SharPersist Download ScheduleRunner___________________________
@hacking_Attack
@Hacking_Video
GitHub
GitHub - dahall/TaskScheduler: Provides a .NET wrapper for the Windows Task Scheduler. It aggregates the multiple versions, provides…
Provides a .NET wrapper for the Windows Task Scheduler. It aggregates the multiple versions, provides an editor and allows for localization. - dahall/TaskScheduler
hacking: security in practice
Truecrypt container passwod
Hello everyone,
I have forgotten my password for Truecrypt container, Anyone know how to hack/crack /open the container, any suggestions would be greatly appreciated..
Thanks
submitted by /u/ptsdonsteroids
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
Truecrypt container passwod
Hello everyone,
I have forgotten my password for Truecrypt container, Anyone know how to hack/crack /open the container, any suggestions would be greatly appreciated..
Thanks
submitted by /u/ptsdonsteroids
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
reddit
Truecrypt container passwod
Hello everyone, I have forgotten my password for Truecrypt container, Anyone know how to hack/crack /open the container, any suggestions would...
hacking: security in practice
Why is it easier to pivot from *nix PCs/servers?
One of the rooms about pivoting on TryHackMe said that you should, “try to use a Linux/Unix target if possible since they’re easier to pivot from. An outward facing Linux Web-server is absolutely ideal.”
THM didn’t elaborate as to why this is the case, and I didn’t see any references to this online. I assumed that with all else being equal, a Windows machine/server would generally be more vulnerable than a *nix machine/server. Does anyone have any more info about this?
Thanks for your time
submitted by /u/Agent-BTZ
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
Why is it easier to pivot from *nix PCs/servers?
One of the rooms about pivoting on TryHackMe said that you should, “try to use a Linux/Unix target if possible since they’re easier to pivot from. An outward facing Linux Web-server is absolutely ideal.”
THM didn’t elaborate as to why this is the case, and I didn’t see any references to this online. I assumed that with all else being equal, a Windows machine/server would generally be more vulnerable than a *nix machine/server. Does anyone have any more info about this?
Thanks for your time
submitted by /u/Agent-BTZ
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
reddit
Why is it easier to pivot from *nix PCs/servers?
One of the rooms about pivoting on TryHackMe said that you should, “try to use a Linux/Unix target if possible since they’re easier to pivot from....
hacking: security in practice
Can Deleted messages be recovered
submitted by /u/Yourboykillua
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
Can Deleted messages be recovered
submitted by /u/Yourboykillua
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
reddit
Can Deleted messages be recovered
Posted in r/hacking by u/Yourboykillua • 1 point and 0 comments
hacking: security in practice
SQL Injection with curl
I've been in security for several years but just now getting into pentesting and hacking. First exercise is trying my hand at some SQL injection. I know SQL well and have done some backend and frontend website work before, so i'm no stranger the technologies used here.
What I'm running into is that I'm blind and often it's far easier to work in a text-based shell as opposed to using a lot of GUI-based tools. I've noticed that I'm running into some trouble getting curl to properly post my strings for form encoded data to the target page.
IE:
curl -x POST -F 'username=admin\'#' https://example.com/
doesn't seem to work. It treats the "#" as another field name, trying to \escape this doesn't seem to work either. I've tried double-quoting the form data, even going so far as to manually url-encode the form data and append it to the end of the https URL of the page I'm trying. It's against a lab where I know the string that's supposed to work if done in the browser, and i can confirm it does indeed work in a browser.
Any suggestions or insights on how to get CURL to properly do this? I'm solid with Python as well so my next step is to use the requests module to see if it runs into the same problem (I was doing some user-agent testing earlier today and it seemed to not have an issue). But, I'd really like to just be able to throw a quick test together in the terminal before breaking out a full Python script/shell to do any of this.
Any help is immensely appreciated.
submitted by /u/BeforeSides
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
SQL Injection with curl
I've been in security for several years but just now getting into pentesting and hacking. First exercise is trying my hand at some SQL injection. I know SQL well and have done some backend and frontend website work before, so i'm no stranger the technologies used here.
What I'm running into is that I'm blind and often it's far easier to work in a text-based shell as opposed to using a lot of GUI-based tools. I've noticed that I'm running into some trouble getting curl to properly post my strings for form encoded data to the target page.
IE:
curl -x POST -F 'username=admin\'#' https://example.com/
doesn't seem to work. It treats the "#" as another field name, trying to \escape this doesn't seem to work either. I've tried double-quoting the form data, even going so far as to manually url-encode the form data and append it to the end of the https URL of the page I'm trying. It's against a lab where I know the string that's supposed to work if done in the browser, and i can confirm it does indeed work in a browser.
Any suggestions or insights on how to get CURL to properly do this? I'm solid with Python as well so my next step is to use the requests module to see if it runs into the same problem (I was doing some user-agent testing earlier today and it seemed to not have an issue). But, I'd really like to just be able to throw a quick test together in the terminal before breaking out a full Python script/shell to do any of this.
Any help is immensely appreciated.
submitted by /u/BeforeSides
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
reddit
SQL Injection with curl
I've been in security for several years but just now getting into pentesting and hacking. First exercise is trying my hand at some SQL injection....
hacking: security in practice
breaking into an inherited ipad pro
Hey guys, this is a dumb question, but I want to reset my dad's old iPad pro back to factory settings. Unfortunately, my dad was a bloody tight lipped fucker, and I can't get in with the pass code.
Unfortunately, whatever knowledge of that code is sprayed across my garage, so that is out.
He also didn't write anything down, nor did he provide anyone with the code.
So. I don't care about what's on the iPad, I just need the iPad. Is there any tool that I can use to get in? Or am I SOL
submitted by /u/Gemini_fishfucker
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
breaking into an inherited ipad pro
Hey guys, this is a dumb question, but I want to reset my dad's old iPad pro back to factory settings. Unfortunately, my dad was a bloody tight lipped fucker, and I can't get in with the pass code.
Unfortunately, whatever knowledge of that code is sprayed across my garage, so that is out.
He also didn't write anything down, nor did he provide anyone with the code.
So. I don't care about what's on the iPad, I just need the iPad. Is there any tool that I can use to get in? Or am I SOL
submitted by /u/Gemini_fishfucker
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
Reddit
reddit.com: over 18?
Reddit gives you the best of the internet in one place. Get a constantly updating feed of breaking news, fun stories, pics, memes, and videos just for you. Passionate about something niche? Reddit has thousands of vibrant communities with people that share…
Hacking on Medium
Deconstructing the ransomware kill chain
https://cdn-images-1.medium.com/max/1024/1*torJ6PlesCjsauXT2AG-Xw.jpeg
By design ransomware is a relatively “noisy” form of malware and its kill chain presents multiple opportunities for network defenders to…
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Deconstructing the ransomware kill chain
https://cdn-images-1.medium.com/max/1024/1*torJ6PlesCjsauXT2AG-Xw.jpeg
By design ransomware is a relatively “noisy” form of malware and its kill chain presents multiple opportunities for network defenders to…
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
Deconstructing the ransomware kill chain
By design ransomware is a relatively “noisy” form of malware and its kill chain presents multiple opportunities for network defenders to…
Watch out the links : Account takeover
This is my second writeup here :), Hope you find enjoy it too!Continue reading on Medium »
Read more...
This is my second writeup here :), Hope you find enjoy it too!Continue reading on Medium »
Read more...
Very interested in landing a Pentester job to move on
https://www.reddit.com/r/redteamsec/comments/txbxfr/very_interested_in_landing_a_pentester_job_to/
I do hold a active good standing CISSP, will no doubt have OSCP on the 29th. 15 years experience as System Engineer and IDR. Kinda dumb question but I do have lock picking skills which is strictly a hobby and not resume worthy. If I did get some lockpicking certification is that any kind of additional edge over the competition to land a redteam job in the future? submitted by /u/newworldsamurai3030 (https://www.reddit.com/user/newworldsamurai3030)
[link] (https://www.reddit.com/r/redteamsec/comments/txbxfr/very_interested_in_landing_a_pentester_job_to/) [comments] (https://www.reddit.com/r/redteamsec/comments/txbxfr/very_interested_in_landing_a_pentester_job_to/)
___________________________
@hacking_Attack
@Hacking_Video
https://www.reddit.com/r/redteamsec/comments/txbxfr/very_interested_in_landing_a_pentester_job_to/
I do hold a active good standing CISSP, will no doubt have OSCP on the 29th. 15 years experience as System Engineer and IDR. Kinda dumb question but I do have lock picking skills which is strictly a hobby and not resume worthy. If I did get some lockpicking certification is that any kind of additional edge over the competition to land a redteam job in the future? submitted by /u/newworldsamurai3030 (https://www.reddit.com/user/newworldsamurai3030)
[link] (https://www.reddit.com/r/redteamsec/comments/txbxfr/very_interested_in_landing_a_pentester_job_to/) [comments] (https://www.reddit.com/r/redteamsec/comments/txbxfr/very_interested_in_landing_a_pentester_job_to/)
___________________________
@hacking_Attack
@Hacking_Video
Reddit
r/redteamsec on Reddit: Very interested in landing a Pentester job to move on
Posted by u/newworldsamurai3030 - No votes and 3 comments
hacking: security in practice
ADB exploit
I am curious, how i can exploit android which is on same network with me plus i have access to router page. I am researching about it for like weeks but can't find anything. Is it even possible ?
submitted by /u/YesDepresseddd
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
ADB exploit
I am curious, how i can exploit android which is on same network with me plus i have access to router page. I am researching about it for like weeks but can't find anything. Is it even possible ?
submitted by /u/YesDepresseddd
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
reddit
ADB exploit
I am curious, how i can exploit android which is on same network with me plus i have access to router page. I am researching about it for like...
Watch out the links : Account takeover
https://medium.com/@AkashHamal0x01/watch-out-the-links-account-takeover-32b9315390a7?source=rss------bug_bounty-5
___________________________
@hacking_Attack
@Hacking_Video
https://medium.com/@AkashHamal0x01/watch-out-the-links-account-takeover-32b9315390a7?source=rss------bug_bounty-5
___________________________
@hacking_Attack
@Hacking_Video
Medium
Watch out the links : Account takeover!
This is my second writeup here :), Hope you find enjoy it too!
This is my second writeup here :), Hope you find enjoy it too!Continue reading on Medium » (https://medium.com/@AkashHamal0x01/watch-out-the-links-account-takeover-32b9315390a7?source=rss------bug_bounty-5)
___________________________
@hacking_Attack
@Hacking_Video
___________________________
@hacking_Attack
@Hacking_Video
Medium
Watch out the links : Account takeover!
This is my second writeup here :), Hope you find enjoy it too!
Hacking on Medium
Man in the Middle and Denial of Service Attacks- Certified Ethical Hacking- Questionnaires Live
Man in the Middle and Denial of Service Attacks- Certified Ethical Hacking- Questionnaires Live
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Man in the Middle and Denial of Service Attacks- Certified Ethical Hacking- Questionnaires Live
Man in the Middle and Denial of Service Attacks- Certified Ethical Hacking- Questionnaires Live
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
Man in the Middle and Denial of Service Attacks- Certified Ethical Hacking- Questionnaires Live
Hacking on Medium
Resources & Learning Paths collections (Part-1)
https://cdn-images-1.medium.com/max/1024/1*iigp3p9DtSN5HTcfMtzVuQ.png
I am starting a series of blogs where you find the collection of documents, presentations, videos, training materials, tools, services…
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Resources & Learning Paths collections (Part-1)
https://cdn-images-1.medium.com/max/1024/1*iigp3p9DtSN5HTcfMtzVuQ.png
I am starting a series of blogs where you find the collection of documents, presentations, videos, training materials, tools, services…
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
Resources & Learning Paths collections (Part-1)
I am starting a series of blogs where you find the collection of documents, presentations, videos, training materials, tools, services, and…
Cyber Guardian Shirt for 3 min breach Survey
https://www.reddit.com/r/Pentesting/comments/txgkel/cyber_guardian_shirt_for_3_min_breach_survey/
👋🏼 Hi everyone! I've read the FAQs so apologies if I may have misunderstood something! I'm conducting a 3 min confidential survey on breach preparedness for cyber security professionals and as a thanks, you get a free Cyber Guardian shirt! It's right here (https://www.surveymonkey.com/r/Social_Organic). Thank you for your time and have a great day :) Aviva submitted by /u/trojanrockinghorse (https://www.reddit.com/user/trojanrockinghorse)
[link] (https://www.reddit.com/r/Pentesting/comments/txgkel/cyber_guardian_shirt_for_3_min_breach_survey/) [comments] (https://www.reddit.com/r/Pentesting/comments/txgkel/cyber_guardian_shirt_for_3_min_breach_survey/)
___________________________
@hacking_Attack
@Hacking_Video
https://www.reddit.com/r/Pentesting/comments/txgkel/cyber_guardian_shirt_for_3_min_breach_survey/
👋🏼 Hi everyone! I've read the FAQs so apologies if I may have misunderstood something! I'm conducting a 3 min confidential survey on breach preparedness for cyber security professionals and as a thanks, you get a free Cyber Guardian shirt! It's right here (https://www.surveymonkey.com/r/Social_Organic). Thank you for your time and have a great day :) Aviva submitted by /u/trojanrockinghorse (https://www.reddit.com/user/trojanrockinghorse)
[link] (https://www.reddit.com/r/Pentesting/comments/txgkel/cyber_guardian_shirt_for_3_min_breach_survey/) [comments] (https://www.reddit.com/r/Pentesting/comments/txgkel/cyber_guardian_shirt_for_3_min_breach_survey/)
___________________________
@hacking_Attack
@Hacking_Video
reddit
Cyber Guardian Shirt for 3 min breach Survey
👋🏼 Hi everyone! I've read the FAQs so apologies if I may have misunderstood something! I'm conducting a 3 min confidential survey on breach...
Where is the safest place to store your data?
https://www.reddit.com/r/redteamsec/comments/txgjid/where_is_the_safest_place_to_store_your_data/
As for me all of my information can be divided by importance, like: system backups (1/10 importance); current working files (3); personal archives: photos, videos (6); copies of paper documents (8); secrets: keys, passwords, wallets (10/10). Losing files is always unpleasant. What can you do to protect them? submitted by /u/Derrick_Wallarm (https://www.reddit.com/user/Derrick_Wallarm)
[link] (https://www.reddit.com/r/redteamsec/comments/txgjid/where_is_the_safest_place_to_store_your_data/) [comments] (https://www.reddit.com/r/redteamsec/comments/txgjid/where_is_the_safest_place_to_store_your_data/)
___________________________
@hacking_Attack
@Hacking_Video
https://www.reddit.com/r/redteamsec/comments/txgjid/where_is_the_safest_place_to_store_your_data/
As for me all of my information can be divided by importance, like: system backups (1/10 importance); current working files (3); personal archives: photos, videos (6); copies of paper documents (8); secrets: keys, passwords, wallets (10/10). Losing files is always unpleasant. What can you do to protect them? submitted by /u/Derrick_Wallarm (https://www.reddit.com/user/Derrick_Wallarm)
[link] (https://www.reddit.com/r/redteamsec/comments/txgjid/where_is_the_safest_place_to_store_your_data/) [comments] (https://www.reddit.com/r/redteamsec/comments/txgjid/where_is_the_safest_place_to_store_your_data/)
___________________________
@hacking_Attack
@Hacking_Video
Reddit
r/redteamsec on Reddit: Where is the safest place to store your data?
Posted by u/Derrick_Wallarm - 2 votes and 2 comments