as the pic shows...
Forum Thread: Command:Modprobe -L Doesn't Work,Why?
- Hot
- Active
-
Forum Thread: How to Train to Be an IT Security Professional (Ethical Hacker) 23 Replies
2 days ago -
How to: Sign the APK File with Embedded Payload (The Ultimate Guide) 11 Replies
3 days ago -
Forum Thread: How to Track Who Is Sms Bombing Me . 4 Replies
2 wks ago -
Forum Thread: Removing Pay-as-You-Go Meter on Loan Phones. 1 Replies
1 mo ago -
Forum Thread: Hydra Syntax Issue Stops After 16 Attempts 3 Replies
1 mo ago -
Forum Thread: moab5.Sh Error While Running Metasploit 17 Replies
2 mo ago -
Forum Thread: Execute Reverse PHP Shell with Metasploit 1 Replies
3 mo ago -
Forum Thread: Install Metasploit Framework in Termux No Root Needed M-Wiz Tool 1 Replies
4 mo ago -
Forum Thread: Hack and Track People's Device Constantly Using TRAPE 35 Replies
4 mo ago -
Forum Thread: When My Kali Linux Finishes Installing (It Is Ready to Boot), and When I Try to Boot It All I Get Is a Black Screen. 8 Replies
5 mo ago -
Forum Thread: HACK ANDROID with KALI USING PORT FORWARDING(portmap.io) 12 Replies
5 mo ago -
Forum Thread: Hack Instagram Account Using BruteForce 208 Replies
6 mo ago -
Forum Thread: Metasploit reverse_tcp Handler Problem 47 Replies
8 mo ago -
Metasploit Error: Handler Failed to Bind 41 Replies
8 mo ago -
Forum Thread: How to Hack Android Phone Using Same Wifi 21 Replies
8 mo ago -
How to: HACK Android Device with TermuX on Android | Part #1 - Over the Internet [Ultimate Guide] 177 Replies
8 mo ago -
How to: Crack Instagram Passwords Using Instainsane 36 Replies
8 mo ago -
Forum Thread: How to Hack an Android Device Remotely, to Gain Acces to Gmail, Facebook, Twitter and More 5 Replies
9 mo ago -
Forum Thread: How Many Hackers Have Played Watch_Dogs Game Before? 13 Replies
9 mo ago -
Forum Thread: How to Hack an Android Device with Only a Ip Adress 55 Replies
10 mo ago
-
How To: Find Identifying Information from a Phone Number Using OSINT Tools
-
Hack Like a Pro: How to Find Directories in Websites Using DirBuster
-
How To: Upgrade a Dumb Shell to a Fully Interactive Shell for More Flexibility
-
How To: Dox Anyone
-
How To: Find Vulnerable Webcams Across the Globe Using Shodan
-
How To: Set Up a Wi-Fi Spy Camera with an ESP32-CAM
-
How To: Use Ettercap to Intercept Passwords with ARP Spoofing
-
How To: Use Metasploit's WMAP Module to Scan Web Applications for Common Vulnerabilities
-
How To: Crack Any Master Combination Lock in 8 Tries or Less Using This Calculator
-
How To: Crack SSH Private Key Passwords with John the Ripper
-
How To: Use Burp & FoxyProxy to Easily Switch Between Proxy Settings
-
How To: Enumerate SMB with Enum4linux & Smbclient
-
How To: Crack Password-Protected Microsoft Office Files, Including Word Docs & Excel Spreadsheets
-
Steganography: How to Hide Secret Data Inside an Image or Audio File in Seconds
-
How To: Use SQL Injection to Run OS Commands & Get a Shell
-
How To: The Top 80+ Websites Available in the Tor Network
-
How To: Get Root with Metasploit's Local Exploit Suggester
-
How To: Use MDK3 for Advanced Wi-Fi Jamming
-
How To: Bypass File Upload Restrictions on Web Apps to Get a Shell
-
How To: Seize Control of a Router with RouterSploit
4 Responses
The error message is clear, modprobe don't understand the option '-l', type modprobe -h to see the available options.
It still doesn't work...
Your syntax is wrong, check it. You can see additional information on the man page typing man modprobe.
The -l switch to the modprobe command has been deprecated. You can use the following one-liner I whipped up to perform the same action in addition to displaying which modules are currently loaded. It outputs everything to a file called /tmp/modules.out:
find /lib/modules/$(uname -r)/kernel -type f -printf '%f\n' | sort | while read mod;do [ $(lsmod | grep -c ${mod/.ko/}) -ge 1 ] && echo "$mod (loaded)" || echo "$mod";done | tee /tmp/modules.out
Share Your Thoughts