代码搜索:execute
找到约 10,000 项符合「execute」的源代码
代码结果 10,000
www.eeworm.com/read/439112/1809147
nasl vbulletin_calender_command_execution.nasl
desc = "
A vulnerability in vBulletin enables attackers to craft special URLs
that will execute commands on the server through the vBulletin PHP
script.
For more information see: http://www.securite
www.eeworm.com/read/438718/1822823
py ni.py
"""New import scheme with package support.
Quick Reference
---------------
- To enable package support, execute "import ni" before importing any
packages. Importing this module automatically inst
www.eeworm.com/read/427735/1967262
cpp codermixermt.cpp
// CoderMixerMT.cpp
#include "StdAfx.h"
#include "CoderMixerMT.h"
namespace NCoderMixer {
void CCoder::Execute() { Code(NULL); }
void CCoder::Code(ICompressProgressInfo *progress)
{
www.eeworm.com/read/419645/2074840
cpp codermixermt.cpp
// CoderMixerMT.cpp
#include "StdAfx.h"
#include "CoderMixerMT.h"
namespace NCoderMixer {
void CCoder::Execute() { Code(NULL); }
void CCoder::Code(ICompressProgressInfo *progress)
{
www.eeworm.com/read/414053/2154444
java action.java
package com.icss.oa.controller;
import javax.servlet.http.*;
public abstract class Action {
public abstract void execute(HttpServletRequest request,HttpServletResponse response);
}
www.eeworm.com/read/407756/2259071
permx
#!/bin/sh
# Scriptname:permx
for file # Empty wordlist
do
if [ -f $file -a ! -x $file ]
then
chmod +x $file
echo $file now has execute permission
fi
done
www.eeworm.com/read/397826/2399810
java oncommand.java
package com.javapatterns.command.television;
public class OnCommand implements Command
{
private Tv myTv;
public OnCommand (Tv tv)
{
myTv = tv;
}
public void execute( )
{
www.eeworm.com/read/397826/2399814
java offcommand.java
package com.javapatterns.command.television;
public class OffCommand implements Command
{
private Tv myTv;
public OffCommand (Tv tv)
{
myTv = tv;
}
public void execute()
www.eeworm.com/read/396408/2422079
sin insert-header.sin
# Sed script that inserts the file called HEADER before the header entry.
#
# At each occurrence of a line starting with "msgid ", we execute the following
# commands. At the first occurrence, insert
www.eeworm.com/read/392558/2494740
java oncommand.java
package com.javapatterns.command.television;
public class OnCommand implements Command
{
private Tv myTv;
public OnCommand (Tv tv)
{
myTv = tv;
}
public void execute( )
{