Archívum - Május 9, 2013 - Fórum téma
Feladatütemezés
Sziasztok!
Szeretnék php kódot bizonyos időközönként (pl naponta)lefuttatni. Megoldható ez esetleg wamp szerver segítségével? Ha nem, akkor hol, hogyan, merre induljak a témában?
■ Szeretnék php kódot bizonyos időközönként (pl naponta)lefuttatni. Megoldható ez esetleg wamp szerver segítségével? Ha nem, akkor hol, hogyan, merre induljak a témában?
phpshell
Történt, hogy láma voltam. nagyon. szar rájönni, hogy a szervered ssh hozzáférését buktad.. ftp maradt és php futtatás. aztán sikerült kiizzadnunk a dolgot, de közben csináltam egy olyan helyes kis dolgot, amit csak meg kell osszak.
[colorer=php]<?php
header('Content-Type: text/html; charset=utf-8');
if (!isset($_SERVER['PHP_AUTH_USER']) || $_SERVER['PHP_AUTH_USER']!='user' || $_SERVER['PHP_AUTH_PW']!='password') {
header('WWW-Authenticate: Basic realm="Hello admin"');
header('HTTP/1.0 401 Unauthorized');
echo 'Nincs jogosultsaga az oldal megtekintesehez.';
exit;
}
if(isset($_POST['command'])){
echo '<pre>',(htmlspecialchars(shell_exec($_POST['command']))),'</pre>';
die();
}
?>
<html>
<body>
<form id="hack" method="get">
<input name="command" type="text" style="width:500px;" class="command" />
<input type="submit" value="go" />
</form>
<div class="log"></div>
<script type="text/javascript" src="/js/jquery-1.9.1.min.js">
</script>
<script type="text/javascript">
$(function(){
var commands=[],i=null;
$('#hack').on('submit',function(e){
e.preventDefault();
var $form=$(this),$input=$form.find('.command'),command=$input.val(),$log=$('.log');
$log.prepend(command+'<br />---<br />');
$input.val('');
i=null;commands.unshift(command);
$.ajax({
method:'POST',
dataType:'html',
data:{command:command},
success:function(res){
$log.prepend(res+'
[colorer=php]<?php
header('Content-Type: text/html; charset=utf-8');
if (!isset($_SERVER['PHP_AUTH_USER']) || $_SERVER['PHP_AUTH_USER']!='user' || $_SERVER['PHP_AUTH_PW']!='password') {
header('WWW-Authenticate: Basic realm="Hello admin"');
header('HTTP/1.0 401 Unauthorized');
echo 'Nincs jogosultsaga az oldal megtekintesehez.';
exit;
}
if(isset($_POST['command'])){
echo '<pre>',(htmlspecialchars(shell_exec($_POST['command']))),'</pre>';
die();
}
?>
<html>
<body>
<form id="hack" method="get">
<input name="command" type="text" style="width:500px;" class="command" />
<input type="submit" value="go" />
</form>
<div class="log"></div>
<script type="text/javascript" src="/js/jquery-1.9.1.min.js">
</script>
<script type="text/javascript">
$(function(){
var commands=[],i=null;
$('#hack').on('submit',function(e){
e.preventDefault();
var $form=$(this),$input=$form.find('.command'),command=$input.val(),$log=$('.log');
$log.prepend(command+'<br />---<br />');
$input.val('');
i=null;commands.unshift(command);
$.ajax({
method:'POST',
dataType:'html',
data:{command:command},
success:function(res){
$log.prepend(res+'