Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How To Pass a Parameter in URL #2

Closed
zmoddynamics opened this issue Jul 27, 2016 · 2 comments
Closed

How To Pass a Parameter in URL #2

zmoddynamics opened this issue Jul 27, 2016 · 2 comments

Comments

@zmoddynamics
Copy link

Hi,
I'm using your controller to invoke a shell command like this:

use \yii2sshconsole\Controller; class SshController extends Controller { public function actionExample($q=null) { echo $q; } }
Then, calling the url : example.com/ssh/example/1
gives the following error:
Unknown option: --q

I've also tried calling the url: example.com/ssh/example?q=1
gives the following error:
Unknown option: --q

Can I not pass a parameter in the URL because your class extends console/Controller and not yii\base\Controller ?

Is there a solution ?

@zmoddynamics
Copy link
Author

zmoddynamics commented Jul 27, 2016

Hi, well I just realized your controller does not extend from Yii\web\Controller so it doesn't accept parameters from URL. I solved this by doing the following in normal Yii web controller, but would be interested in your thoughts?
use Yii;
use yii\web\Controller;
class websshController extends Controller {
public function actionExample($q=null)
{
$myssh = (new \yii2sshconsole\Controller('id',null,[]));
//do your magic $myssh->connect([]); $myssh->run([]); etc..

}
}

url: example.com/webssh/example/?q=1 .. this works.. thanks

@thelfensdrfer
Copy link
Owner

Hi, your workaround seems fine. I only created this extension to help me with deployments etc. and think it's a security risk to execute ssh commands via url parameters. But if you feel comfortable with it, I'm fine too;) Thanks for sharing your solution.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants