su is a utility to run a shell or other command as another user (root by default).
0
votes
0answers
17 views
jsch + running multiple command in shell after SU and then close channal
My requirement is as follow:
I have to login to Unix box using my credentials and once login, I have to do su to different user. I need to provide password and reason for scsu command.
once su ...
1
vote
0answers
27 views
Sending shell command returns “No such file or directory” while it actually exists
I am making a Core management app for rooted android dual-core phones and up ... So what this app shall do is modify a file in the /sys directory , so it surely needs to use root or "su" . So what i ...
-3
votes
1answer
24 views
Build SU without toast messages - Android [closed]
Problem
I root android devices with apps like framaroot or SRS Root, which does not require installing custom ROM or flashing. But leverage vulnerabilities and inject SU command. Through Shell, via my ...
0
votes
0answers
29 views
Why this Superuser command doesn't work in Mono for Android (MonoDroid)?
I've just written this little function to run multiple SuperUser command in Android:
private string RunCommandAsRoot(string[] Commands)
{
Java.Lang.Process Process = ...
0
votes
1answer
32 views
Azure Regain sudo/su Access
While trying to install a GUI application today I found myself having to disable waagent. Turns out the NetworkManager packages are not compatible with waagent. A few, obviously outdated, posts ...
-2
votes
2answers
49 views
How do I change to su to modify a file in ruby script [closed]
I have an existing Ruby on Rails app that work fine, but now I need to add a line to a system file that the app normally does not have access to. Is there a simple way to open the file as SU? (Ruby ...
0
votes
1answer
61 views
How to open GUI app with different $HOME path in Mac OS X
I'm wondering how I might go about opening a Mac OS X application using a different $HOME path.
Specifically, I'm trying to start a browser and have different sessions, so they don't interfere with ...
0
votes
0answers
87 views
Filemanager root read write delete directory
I am creating my own filemamager. I want to add root access. In my settings class I added this code:
if (key.equals("root")) {
final Runtime runtime = Runtime.getRuntime();
try {
...
0
votes
1answer
71 views
Android executing SU commands in background?
I'm writing an android app that sets the max frequency, governor etc.. when the screen turns off. To do it i have a service running that receives screen on/off broadcast intents. When the screen off ...
3
votes
1answer
126 views
Copy files to another package folder (root, su)
I have my application's package (com.my.package) and i'd like to be able to copy some files (a.txt, b.txt and c.txt) to another package (data/data/com.another.package/files). Now i've tried a few ...
-1
votes
2answers
407 views
Android does not boot because of missing apk files in system/app folder [closed]
I have a rooted Huawei u8825d phone.I want to know if there were no apk files in "/system/app/" folder.
So,I moved these apk files from /system/app/ to internal sd-card.When I tried to reboot the ...
1
vote
2answers
37 views
How to run 'at' as a different user?
I often need to run at jobs as a different user. I've always done something like
$ echo "$PWD/batchToRun -parameters" | sudo su - otheruser -c "at now"
batchToRun is also scheduled to run via ...
0
votes
1answer
103 views
Running Terminal Command in Android App to Route Audio
So i have an LG P920 I want to Modify The T.I FMrX app to add commands to route audio via tinymix here are the shell commands
# tinymix 6 120
# tinymix 66 7
# tinymix 67 7
# tinymix 73 2
# tinymix ...
0
votes
2answers
149 views
Why programm still don't take screenshoot after getting “su”?
I push the button and programm get SU, but png file is 0 bytes weight. Logcat says
Permission denied: can't read framebuffer pid=12844 uid=10087.
So why thats so. My phone is rooted, program ...
0
votes
3answers
47 views
Executing db2 command through ssh
trying to ssh to another system then perform db2 commands however using 'su db2admin -c' does not seem to work, although it works for normal system commands ..
#!/bin/bash
sshpass -p 'passw0rd' ssh ...
1
vote
2answers
38 views
How to block all traffic for a given user?
I'd like to run a script on UNIX with restricted privileges. Specifically, I'd like to run code that I received without letting it send data. My current solution is to:
Create a dummy user.
Use ...
0
votes
1answer
137 views
Running fabric scripts as root
I am trying to use fabric to automate some administrative work that I am doing on a couple of servers. The general flow is the following:
SSH with local user
run: sudo su - to become root (providing ...
0
votes
1answer
172 views
suid flag for su binary in Android
Which script of the android build tree is giving the "suid" flag to the su binary before the system.img file is packed?
I've "grepped" for "chmod +s" or "chmod 4" strings but no luck for now.
0
votes
1answer
198 views
How to switch user in AIX shell script?
I want to run a DB2 query from shell script. I have a user db2inst1 that's required to execute DB2 statements. I am running an application that uses root user to run the shell script. HERE if I switch ...
0
votes
1answer
2k views
Root permission not granted to Android app for exceuting “su” command
I want to execute the "su" comand from an app..I have rooted the emulator and installed Superuser.apk(superuser 2.3.6.1)
Process pr= Runtime.getRuntime().exec("su");
process.waitFor();
...
0
votes
2answers
621 views
'su' command issue while executing through android application
Hi I'm trying to execute the 'su' command as following via an app.
Process process = Runtime.getRuntime().exec("su");
process.waitFor();
Log.d("EXITVAL",Integer.toString(process.exitValue()));
I'm ...
0
votes
1answer
55 views
Why do some commands require locks on Unix and others don't?
Recently, I'd been observing something interesting on our environment AIX 7.1. In an attempt to track down the issue, I created a small locking application in Java:
import java.io.File;
import ...
0
votes
1answer
76 views
Missing matching quote with su -c in bash script
I want to write something like
EXEC="sudo su -m root -c \"java Something\""
$EXEC &
But i get the following error:
Something": -c: line 0: unexpected EOF while looking for matching `"'
...
0
votes
2answers
196 views
Cannot get permission prompt from SuperSU
I have an app which should execute some root commands.
SuperSU version is 1.04.
Su version is 1.02.
Android 4.1.1.
Device is Samsung Galaxy S3 - rooted.
The problem is I cannot get a permission ...
0
votes
2answers
51 views
How can I see the loggedin users that have used 'su'
If I use a login shell to login as root
then 'who' or 'users' commands
will show an entry for the root user.
However If I login with user1 and then use:
'su - root'
Then the 'who' and 'users' ...
1
vote
2answers
183 views
Running shell command through application..not working properly
Hi I'm trying to execute shell commands from an app.
Though the code runs with out any error, the output is not seen.
As an example I'm trying to copy a file. This command works fine, while executing ...
0
votes
0answers
248 views
Android LD_LIBRARY_PATH not available for su (export)
if we`re using the Android Shell (adb shell) as 'common' user we can see the 'LD_LIBRARY_PATH' variable with the 'export' command:
shell@android:/ $ export
export
ANDROID_ASSETS
ANDROID_BOOTLOGO
...
0
votes
0answers
130 views
run a shell command and media scanner in android application
I am trying to write a program with 2 buttons 1 button is to execute this command "mv /storage/extSdCard/.vids/* /storage/extSdCard/vidsha"
and the other is "mv /storage/extSdCard/vidsha/* ...
1
vote
2answers
169 views
Avoid “su” toast on shell command execute in Android?
I'm developing a simple app that injects lines on build.prop by executing a shell command. My main problem is that every time I check a toggle that create the function a toast displaying the shell ...
0
votes
0answers
226 views
Capturing frames from h264 video in android froyo
The problem: "How to capture image frames from video in Android api level 8"
Description: In api level 10 there was released MediaDataRetriever class, which has method "captureFrame". It doesn't work ...
4
votes
4answers
273 views
Android regular user login loses group information when su to another user in an ssh session
What I'm doing:
I've built GNU emacs for native use on an phone.
I run emacs in daemon mode on the phone, so I connect to it anytime with emacsclient, to continue working with regular files, run ...
0
votes
0answers
88 views
How to execute code as other user within script?
I'm writing a script which automates the install of a mailserver, however some of my code has to be compiled from source because it is not in repositories. I have no problem with this, however, I have ...
1
vote
1answer
643 views
Android Runtime.getRuntime().exec and rsync
I'm tryng to run rsync on my device. I have the binary in /system/xbin/rsync and I'm trying to launch it with Runtime.getRuntime().exec. I'm new to Android programming, so I don't get yet if I have to ...
0
votes
3answers
907 views
Is it possible to run a shell command as root with only the su binary and no SuperSU or Superuser apk installed?
I have an Android phone that has only su binary installed and it works, meaning I can adb shell into the phone and run an 'su' command and I will be root.
When I try to run a command via code, it ...
-1
votes
1answer
140 views
su -c in a bash script won't show any output [closed]
I've been scratching my head over this one for a while now. It seems so simple yet I just can't get it to work. This is on a rooted android tablet, if that makes a difference. I'm trying to imitate ...
0
votes
0answers
115 views
Trouble with RunTime.exec(“su”)
I would like to run some shell command from my application but when i run :
Process process = Runtime.getRuntime().exec(su);
I have got an error : su: uid XXXXX not allowed to su.
I do not ...
0
votes
1answer
361 views
JSCH sudo su command “tty” error
Java - Jsch sudo command.
I am using Jsch and my task is to login to server and run command as following
sudo su - bumboo
Using following code i am successfully able to connect but when i try to ...
2
votes
1answer
2k views
SSH Error - standard in must be a TTY
I'm trying to run the following command:
ssh -i FILENAME.pem ec2-user@ec2-00-000-00-00.eu-west-1.compute.amazonaws.com su --session-command="./update.sh"
I keep getting the error message:
standard ...
0
votes
2answers
121 views
SUDO - iOS FTP - Stuck
I have a script for MobileTerminal in iOS that requires su,
is there any way I can add a command to the bash script to login as root without having to type su then the password?
Cheers,
Dec
0
votes
0answers
131 views
Unable to connect android wifi while executing su
execute the following commands:
su
setprop service.adb.tcp.port 5555
stop adbd
start adbd
unable to proceed as it shows error 'Not found" while executing su on terminal emulator ..
3
votes
1answer
385 views
How to net-ssh sudo su in Ruby
I'm trying to figure out how to a send chain of multiple net-ssh commands after a sudo su - #{su_user} in Ruby.
My current code is below, and hangs with the sudo su command, even after the send_data ...
0
votes
1answer
1k views
what are the correct file permissions for su and busybox on an unrooted android phone?
I am developing an embedded application and I need allow the device owner to root and unroot the device on demand.
I am able to root the device by running the following shell commands through a ...
1
vote
2answers
90 views
Android's default su
Root Checker fails on Android's default su (built from AOSP), but in adb shell it works fine. It seems this su program doesn't provide root access to the Android framework. But I don't quite know the ...
5
votes
3answers
2k views
How does Android SuperUser app detect that an app requests root?
I'm writing an app that will use su to execute some commands in the linux kernel. I was wondering how SuperUser figures out that the application is asking for root privileges ? Also, are there any ...
0
votes
2answers
127 views
Change the SharedPreferences of another application using super user
I'm trying to use super user to modify another application's SharedPreferences.
Here is how I do :
Process suProcess = Runtime.getRuntime().exec("su");
DataOutputStream os = new ...
2
votes
1answer
78 views
android SU message popping up many times
I have a root application that I am trying to make. I have it so that the Launcher activity contains a ListView and when you press on an item it opens an AlertDialog and asks for confirmation. Its ...
0
votes
0answers
150 views
Copying to /system - android
I am been trying to copy a apk from assets of another apk to /system.
Here is what I have done,it was working in my previous app but not in this.I have added permission for wrtiting external storage.
...
0
votes
1answer
257 views
How can I switch user in a Capistrano task?
I made a small test task below:
set :user, "user"
set :password, "password"
set :root_password, "root password"
set :use_sudo, false
role :srv, "exmaple.com"
task :show_info do
run "iptables ...
0
votes
3answers
410 views
Use shell_exec() to restart server?
I have a 128MB VPS and every now and then it gets cluttered. Rebooting will fix the issue but what if I want to reboot from the browser (password-protected page). How can "www-data" restart my machine ...
0
votes
0answers
42 views
Run bash command as owner of X Window in script
I have a bash-script that works just fine and it throws up some search results on a webpage. So far so good. To make it work though, the current user - who owns the X Window - has to run the command ...

