Questions tagged [kali-linux]

Kali Linux is a special-purpose Linux distribution for penetration testing and security auditing, based on Debian. KALI LINUX QUESTIONS ON STACK OVERFLOW MUST BE PROGRAMMING RELATED. Questions about problems getting something to work on Kali, why Kali is so different from other Linux distributions, etc., are generally off-topic for Stack Overflow.

Kali Linux is a special-purpose Linux distribution for penetration testing and security auditing, based on Debian.

Nearly all questions about Kali are considered off-topic not only on Stack Overflow, but on its sister sites (e.g. Server Fault, Super User, Unix and Linux Stack Exchange). For more information about why we have this policy, please read the following FAQ: Why is Kali Linux so hard to set up? Why won't people help me?

275 questions
0
votes
0 answers

How can I get SQL injection attack data by using sqlmap?

I'm writing thesis for my university. My theme of thesis is "SQL injection detection by using Machine Learning" To use Machine Learning, first of all, I need thousands of learning data of SQL injection attack. For that, I proceeded below…
Ryoma
  • 31
  • 1
  • 1
  • 8
0
votes
2 answers

Unresolved bundle when installing Vega

I am running the latest kali linux (gnome) and im trying to install Vega but whenever I try opening it the loading screen show up for a second then a pop up shows up and says An error has occurred. See the log file…
Xenoy
  • 67
  • 1
  • 8
0
votes
1 answer

Decoding a Payload using GitHub Decoder Script

Abstract: I am analysing a pcap file, with live malware (for educational purposes), and using Wireshark - I managed to extract few objects from the HTTP stream and some executables. During my Analysis, I found instances hinting Fiestka Exploit Kit…
0
votes
2 answers

kill PHP server with port

I want to kill PHP server with port I know I can kill PHP server whit this code: ps -ef | grep php kill -9 php but I want to kill PHP server with it's port: something like: kill php port 8080 and my device is KALI-LINUX
0
votes
1 answer

Create Asp.net MVC Application (not core) with visual studio code

I have a question and I searched it on the web and I can't find any answer. How can I create a ASP.NET MVC web application sample in VS Code? Note: I don't want to create a .NET Core application And second question is: how can publish the ASP.NET…
Mohammad Esmaeili
  • 155
  • 2
  • 2
  • 12
0
votes
2 answers

Why does Kali Linux prompt me for username and password I did not create

I just started using Kali Linux and I decided to run it on VM ware rather than installing as an OS, the weird thing about it that its asking me to login using my username and password. On first installation it did not even ask to create such…
Phillips
  • 51
  • 1
  • 7
0
votes
1 answer

Scanf is reading ctrl+c on named-pipes program

I'm trying to make a named pipe or FIFO with a 2 C program (read & write). Both of this program is running on a while(1) loop. These programs should be terminated when ctrl+c is pressed, but when I press ctrl+c on the write program, it still sending…
0
votes
1 answer

I'm try an arp spoofing attack with scapy, but my target arp table register my ip address instead the spoofed one

I'm trying to make an arpspoofing attack with scapy. I'm working with virtualbox in Linux Min OS, My attack machine is KaliLinux and my target is Metasploitable. This is my scapy…
0
votes
4 answers

Whet I try to run Zenmap, the terminal show me this

Could not import the zenmapGUI.App module: 'No module named gtk'. I checked in these…
Oscarpp
  • 41
  • 1
  • 1
  • 3
0
votes
1 answer

Buildozer Build failed: Android SDK dir was not specified, exiting

I try to create an APK with buildozer. The problem is: when I launch this command to build the APk, I received this error: python3 -m pythonforandroid.toolchain apk --debug --bootstrap=sdl2 --dist_name Population-package --name Population --version…
Snakiron
  • 423
  • 4
  • 11
0
votes
1 answer

Anaconda don't start and block in loading applications

Hi I'm using kali linux I download and setup Anaconda3 in my machine by following the Anaconda documentation and when I tap in my terminal anaconda-navigator, the anaconda start loading application but nothing happend else. This screenshot below can…
0
votes
2 answers

cannot remove `/var/lib/dpkg/lock-frontend` permission denied

I wanted to install GIT on my Kali-linux for that I done this apt install git But it showed an error, so I tried this... rm /var/lib/dpkag/lock-frontend then sudo rm /var/lib/dpkg/lock-frontend It shows that file is removed but still the command is…
0
votes
1 answer

How to save the last output in variable when hit KeyboardInterrupt subprocess

I am completely new to the subprocess module. And I was trying to automate the deauthentication attack commands. When I run airodump-ng wlan0mon as you know it looks for the APs nearby and the connected clients to it. Now when I try to run this…
0
votes
1 answer

Is there a way to pass root password into functions on kali linux in python3

I built a class to change my mac address (not sure if this is the cleanest way to do so) #!/usr/bin/env python3 import subprocess class MacAdress: global interface interface = input("enter interface:\t") def…
0
votes
1 answer

why am I getting an index error saying my list is out of range when writing an ARP spoofing attack?

I'm trying to get the mac address to be automatically added to the spoof and restore function instead of typing it manually. Not too long ago it worked fine but now it doesn't. The "get_mac" function works by itself but not when I add it this code.…