A list of puns related to "Executable File"
My teacher gave me an elf64 file because he wanted me to try to get the flag, I typed the command
> strings execute-me
and "listen_to_me.mp3" was printed out, how do I extract this file?
Good morning everyone, after my brother used my PC last night I noticed that it has been slowing down considerably. I noticed in task manager that my memory and disk usage spiked really hard, and after hours of searching I found out there's an unkown .exe file in my roaming folder named aikfjrhv.exe
I didn't find anything about it on google except for any.run saying it's a malicious software tagged as miner, I tried deleting it but after a while it would return again. I don't really know much about PC aside from surface knowledge and would really appreciate the help for this. Thank you so much
FYI the path I found it was C:\Users\Anonymous\AppData\Roaming
Hi, i hope someone here could help me!
I am managing students computers (10 to 12 years old) for our school via intune for education.
We want that the students cannot install any software by themselves, so we want to disable things like installer .exe or .msi packets.
We already applied the rule "App store only" in endpoint but the kids are still able to install software.
How can i prevent that?
thank you very much!
I want to open this file and replace some text in it. I am using the HxD editor, but when I make changes, the application does not work. I tried two different typing modes using the Δ°nsert key and the result is still the same. I just want to change the text and save the program without damaging the lines. I can send the exe file if anyone wants it. I don't know about programming. I am sorry about that.
I've just installed this app called locale emulator and that it should show up in the context menu of any executable file. But when I right click on it, it doesn't show up. Anybody got a fix for this?
The context menu should be like this. But it didn't show up in my laptop.
Hi im not from computer science department but i had a curiosity to know if hackers can create an autoexecutble file by putting sort of timer in it and push it inside a network to infiltrate pcs. For example last year i was hosting a team viewer connection and helping out a friend with some stuff and it got attacked by different forms viruses encrypting every file and we didnt even know first hour of it. I didnt click any dot exe or script file but still this happened.
i was wondering where the file is located that launches steam
i already googled but only found guides on how to install steam
i also searched myself but can't find it
i'm using Ubuntu 20.04
Does anyone know how to auto-run an executable file (compiled c file) at the startup on Raspberry pi OS buster lite (non desktop)? Thanks!
Gnat raising exception for name error but the file specified is exactly where it needs to be. Ive tried using the command line to run the program too but it still cant find the file.
Is anyone here familiar with this editor? Cannot find anything about it in the wiki. All they have is instructions on the variables. In the build settings this is set for the assembly options:
-g -f win64 $SOURCE$ -l $LSTOUTPUT$ -o $PROGRAM.OBJ$
I know what the variables are for, but how can I even run this from the CLI? Where do I CD into? What command do I use before the flags? I'm on Windows 10 pro 64bit OS.
I've got an app which allows my client's customers to upload files used by my client in their internal processes.
Because the file types used are pretty arcane, I'm allowing my client to whitelist the mime types they're willing to accept. As an added layer of security I'd like to validate the filetypes added against a list of commonly used executable files. Does anyone know where I can find a list of commonly used executable mime types?
I know an exhaustive list is impossible, and it's easy for a determined hacker to evade a list of commonly used executables. But in this case since my client is individually vetting all of the users personally Im not as worried about hostile actors. More than anything I'd like to add an extra layer of protection against accidental uploads of files like: 'expensereport.xls.exe'.
Has anyone dealt with a case like this before?
Running on windows 10. Looking to see if it's possible to make a c# file that, upon being run, can open a random game from a folder of them when I push a certain key (hopefully a dedicated button attached to a USB port), then when I decide I'm done with the game, push the button or key again to close the last game opened with the code before opening a new one from the same folder.
For example, I'd run the file, push the dedicated key from the desktop screen and it would launch randomly selected game D out of games A-Z from the folder, then after I'm done I push the button and it'll close game D and open game W.
I would like the code to accommodate any additions or removals from the folder as to allow me to expand my usable game library without consequence.
Thanks in advance, I'll try to be as helpful as possible as I know comically little about programming, but enough to usually understand what I'm reading in Java. I'm not sure if that translates terribly well to C#.
i Just Downloaded CYK Source From Releases Β· RhenaudTheLukark/CreateYourKris (github.com) here And I am Finding way to mod and execute this
i also tried this like but i can't execute create your frisk file (macos)Release Throwing off some shade Β· RhenaudTheLukark/CreateYourFrisk (github.com)
how do i do for cyk modding
Hello,
I'm BM. A very nice and polite guy.
I get this error message when I try to open links (links the text browser, not url's).
CANNOT LINK EXECUTABLE "links": cannot locate symbol "ffi_type_double" referenced by "/data/data/com.termux/files/usr/lib/libgobject-2.0.so"...
Anyone knows how to fix it?
Edit:nvm i found a way (c++ static linking libaries)
Hi there!
I recently went to update to the current version of SMAPI and when I launch the installer, it cannot find the game path. When I manually input the game path (which worked previously), I receive an error message that the folder doesn't contain an executable file.
The Skinny:
-Net5, and Mono have been installed and updated. Ran Homebrew install of Mono to make sure. -Downloaded the game through both the GoG Galaxy client and the website - no change. -Running MacOS 10.14.6 -pointing installer to Applications/Stardew\ Valley.app/Contents/MacOS which contains the executable windows file as well as the run files for MacOS.
Steps:
-Uninstalled, reinstalled using both the GoG Galaxy Client and the website (Standard Download) -Multiple restarts of system after each uninstall/reinstall and install of Net5/mono/homebrew -Confirmed folder location is correct -attempted to run the installer downloaded from smapi.io and nexus -attempted a manual install - after renaming files as instructed, game won't run at all. -duplicated and renamed the file StardewValley (no extension) to "Stardew Valley.dll" which then continued the install, but then errored out.
I've looked into troubleshooting and through this and other StardewMod subreddits and can't seem to find a solution.Basically, the installer can't find the game and the game is right there, but neither will talk to the other. Any help would be greatly appreciated!
I have decompiled an Instructor supplied JAR file to edit one of the .java files for an assignment. However, I am unable to convert them back into a JAR file, as Eclipse indicates there is no Driver file. The sudo project file consist of 5 .java files and to folders named META-INF and resources. The generic school supplied tutorial only works with a driver file as well. Any suggestions? I used JD-GUI to decompile, as I could not get it to work in Eclipse.
I wanted to modularize my project and split it up into several files. Now I have my util.c
file that holds all the functions that are needed in both my main.c
and another file.c
. The main.h
has all the function definitions and some type declarations. I defined some constants in main.h
that are needed in both the file.c
and main.c
. main.h
is included in all .c
-files. Since its defined in all my files the constant definition is duplicated among the three files. How can I specify that I only want one definition in the final executable but still be able to have the definitions in all three files?
Why are my executables littered with paths like /Users/MYNAME/Source/PROJECTNAME/BUILD/CMakeFiles/PROJECTNAME.dir/Users/MYNAME/Source/PROJECTNAME/Library/src/MODULENAME.c.o
and how do I remove this junk?
Edit: It's mostly privacy reasons I want this removed, not space savings.
I have been trying for a long time to make an executable that can change directories (acting as a shortcut)
I have tried making a file with:
cd /d1/d2/d3
In it and making it executable and putting it in my bin. I have other files that work In there. When I type it in it doesnβt move me (or some up with an error or anything). Any help/advice appreciated thanks
I just recently got the game on steam and I'm trying to Install OBSE, but I can't find Oblivion.exe.
Does anybody know where it is?
I'm trying to open Blender Launcher. It keeps saying "Unknown File Type". When I go into the properties of the Blender Launcher file it says "Program (application/x-executable)". Isn't that the file type? I just thought Linux knew how to open/run those files/programs.
I'm using Linux Mint 20.1
Edit!: SOLVED! answer below
So I found out I needed to get an Emu so I downloaded SmartSteamEmu I added the launcher in there
after that, it still didn't work so I created two folders called StartIn and Target and it still didn't work I don't know what to do can someone help me?
EDIT: I figured it out thank you to everyone who helped!
When I run it in the explorer nothing happens, and I tried executing it in the terminal it also returns nothing.
The code I'm using is one of the examples and the Makefile is the one given in the raylib VSCode template
Please note that this site uses cookies to personalise content and adverts, to provide social media features, and to analyse web traffic. Click here for more information.