Closed. This question is not about programming or software development. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 7 days ago.
Improve this question
I want to backdoor myself for fun, I have learned how to use backdoor-factory tool in Kali Linux. But when I try to backdooring file, tool says "ELF binary not supported". I have no idea why this happening. I even asked that problem from chatGPT. I need human knowledge. I try to write C++ and python code and I made them PE (Portable Executable) but backdoor tool says "ELF binary not supproted". I have latest backdoor-factory tool. Can someone help me?
Related
Closed. This question is not about programming or software development. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 days ago.
Improve this question
I keep trying to install virtualbox 7.0.6, but it always shows the screenshot attached. What do I do to get both of the dependencies?
I tried looking around online but couldn't find anything.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 1 year ago.
Improve this question
I wrote some script with tkinter as a GUI and pyinstaller to convert it to an exe.
However gmail doesn’t allow me to share the file
if I share the file with google drive then windows security gets triggered
What’s a good safe and easy way for people who don’t know how to install python to use the code I write in python.
Thank you
You could use Discord. I believe you can upload an exe to Discord.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 2 years ago.
Improve this question
I have written the following code to open a particular site.
import webbrowser
webbrowser.open('https://stackoverflow.com/')
I want to modify the code to ping the website twice a day without being using an always running code in the background (maybe with an infinite loop).
I'm using a Windows 10 system. I don't have root access.
I have done a little research and was unable to find anything satisfactory.
Thanks in advance.
You could use github actions - there is a guide here
LINUX:
use Crontab or place your script in /etc/rc.local.
WINDOWS:
Use Task scheduler or use AT command similar to crontab in linux.
on Windows you can use Task Scheduler
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 8 years ago.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Improve this question
I'm trying to install Jython 2.7 to use with RobotFramework. I've downloaded all three of the jar files from http://www.jython.org/downloads.html and yet none of them actually install Jython!
I've tried running them from the command line (where a java server is opened) and just opening with java which does nothing. What am I doing wrong? I don't think that the downloads would be hosted if they didn't work.. Could it be that my other installs are affecting it?
Edit: My end goal is to use Jython with RobotFramework to run my test cases in Java
Thanks in advance
Those jars are jython. Run java -jar <jarfile> and you'll be in the jython command line. There is nothing else to install.
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I recently read this post over at Hack a Day Getting root on a Sony TV, which uses a script that can be found here for use on Sony Bravia TVs. The script uses BusyBox and my question is based on the README found here. I have two questions about this: 1. What are the steps I have to take in order to compile BusyBox for the mipsel architecture? 2. How do I include the GLibc / Linux kernel versions for your TV in my BusyBox binary?
Has anyone else gotten this trick to work successfully?
Thanks in advance for your help and time.
Compiling for another architecture is called cross compiling, but of course you would have read that on the Busybox FAQ. Not to mention the link provided there to cross-compilers for all architectures you could ask for.
You could try find a pre-built MIPS binary, the best would be to ask the Busybox list directly if in doubt :)