-
Notifications
You must be signed in to change notification settings - Fork 120
Expand file tree
/
Copy pathActions.php
More file actions
277 lines (248 loc) · 7.25 KB
/
Copy pathActions.php
File metadata and controls
277 lines (248 loc) · 7.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
<?php
/**
* PHP Antimalware Scanner.
*
* @author Marco Cesarato <cesarato.developer@gmail.com>
* @license http://opensource.org/licenses/gpl-3.0.html GNU Public License
*
* @see https://github.com/marcocesarato/PHP-Antimalware-Scanner
*/
namespace AMWScan;
use RecursiveDirectoryIterator;
use RecursiveIteratorIterator;
use RuntimeException;
class Actions
{
/**
* Put contents.
*
* @param $filename
* @param $data
* @param int $flags
* @param null $context
*
* @return false|int
*/
public static function putContents($filename, $data, $flags = 0, $context = null)
{
if (Scanner::isBackupEnabled()) {
self::makeBackup($filename);
}
return file_put_contents($filename, $data, $flags, $context);
}
/**
* Clean Evil Code.
*
* @param $code
* @param $patternFound
*
* @return string|string[]|null
*/
public static function cleanEvilCode($code, $patternFound)
{
foreach ($patternFound as $pattern) {
preg_match('/(<\?php)(.*?)(' . preg_quote($pattern['match'], '/') . '[\s\r\n]*;?)/si', $code, $match);
$match[2] = trim($match[2]);
$match[4] = trim($match[4]);
if (!empty($match[2]) || !empty($match[4])) {
$code = str_replace($match[0], $match[1] . $match[2] . $match[4] . $match[5], $code);
} else {
$code = str_replace($match[0], '', $code);
}
$code = preg_replace('/<\?php[\s\r\n]*\?>/i', '', $code);
}
return $code;
}
/**
* Clean Evil Code Line.
*
* @param $code
* @param $patternFound
*
* @return string
*/
public static function cleanEvilCodeLine($code, $patternFound)
{
$lines = explode(PHP_EOL, $code);
foreach ($patternFound as $pattern) {
unset($lines[(int)$pattern['line'] - 1]);
}
return implode(PHP_EOL, $lines);
}
/**
* Delete File.
*
* @param $file
*
* @return bool
*/
public static function deleteFile($file)
{
if (Scanner::isBackupEnabled()) {
self::makeBackup($file);
}
return self::unlink($file);
}
/**
* Move to Quarantine.
*
* @param $file
*
* @return string
*/
public static function moveToQuarantine($file)
{
$quarantine = Scanner::getPathQuarantine() . DIRECTORY_SEPARATOR . str_replace(realpath(Scanner::getPathScan()), '', realpath($file));
$quarantine = str_replace(['/', '\\'], DIRECTORY_SEPARATOR, $quarantine);
if (!is_dir(dirname($quarantine)) && (!mkdir($concurrentDirectory = dirname($quarantine), 0755, true) && !is_dir($concurrentDirectory))) {
throw new RuntimeException(sprintf('Directory "%s" was not created', $concurrentDirectory));
}
rename($file, $quarantine);
return $quarantine;
}
/**
* Move to Quarantine.
*
* @param $file
*
* @return string
*/
public static function makeBackup($file)
{
$scanPath = realpath(Scanner::getPathScan());
if (is_file($scanPath)) {
$scanPath = dirname($scanPath);
}
$backup = Scanner::getPathBackups() . DIRECTORY_SEPARATOR . str_replace($scanPath, '', realpath($file));
$backup = Path::get($backup);
if (!is_dir(dirname($backup)) &&
(!mkdir($concurrentDirectory = dirname($backup), 0755, true) && !is_dir($concurrentDirectory))) {
throw new RuntimeException(sprintf('Directory "%s" was not created', $concurrentDirectory));
}
copy($file, $backup);
return $backup;
}
/**
* Add to Whitelist.
*
* @param $file
* @param $patternFound
*
* @return false|int
*/
public static function addToWhitelist($file, $patternFound)
{
$whitelist = Scanner::getWhitelist();
foreach ($patternFound as $key => $pattern) {
$exploit = $pattern['key'];
$lineNumber = $pattern['line'];
$match = $pattern['match'];
$fileName = str_replace(Scanner::getPathScan(), '', $file);
$key = md5($exploit . $fileName . $lineNumber);
$whitelist[$key] = [
'file' => $fileName,
'exploit' => $exploit,
'line' => $lineNumber,
'match' => $match,
];
}
$encoded = json_encode($whitelist, JSON_INVALID_UTF8_SUBSTITUTE);
if ($encoded === false) {
return false;
}
Scanner::setWhitelist($whitelist);
return file_put_contents(Scanner::getPathWhitelist(), $encoded);
}
/**
* Open with VIM.
*
* @param $file
* @param $lineNumber
*/
public static function openWithVim($file, $lineNumber = null)
{
if (Scanner::isBackupEnabled()) {
self::makeBackup($file);
}
$descriptors = [
['file', '/dev/tty', 'r'],
['file', '/dev/tty', 'w'],
['file', '/dev/tty', 'w'],
];
$command = "vim ";
if ($lineNumber !== null && is_numeric($lineNumber) && $lineNumber > 0) {
$command .= "+$lineNumber ";
}
$command .= "'$file'";
$process = proc_open($command, $descriptors, $pipes);
while (true) {
$procStatus = proc_get_status($process);
if ($procStatus['running'] == false) {
break;
}
}
}
/**
* Open with Nano.
*
* @param $file
* @param $lineNumber
*/
public static function openWithNano($file, $lineNumber = null)
{
if (Scanner::isBackupEnabled()) {
self::makeBackup($file);
}
$descriptors = [
['file', '/dev/tty', 'r'],
['file', '/dev/tty', 'w'],
['file', '/dev/tty', 'w'],
];
$command = "nano ";
if ($lineNumber !== null && is_numeric($lineNumber) && $lineNumber > 0) {
$command .= "+$lineNumber ";
}
$command .= "'$file'";
$process = proc_open($command, $descriptors, $pipes);
while (true) {
$procStatus = proc_get_status($process);
if ($procStatus['running'] == false) {
break;
}
}
}
/**
* Clean Quarantine path.
*
* @return bool
*/
public static function cleanQuarantine()
{
return self::unlink(Scanner::getPathQuarantine());
}
/**
* Unlink.
*
* @param $path
*
* @return bool
*/
protected static function unlink($path)
{
if (is_dir($path) && !is_link($path)) {
$files = new RecursiveIteratorIterator(
new RecursiveDirectoryIterator($path, RecursiveDirectoryIterator::SKIP_DOTS),
RecursiveIteratorIterator::CHILD_FIRST
);
foreach ($files as $fileinfo) {
$action = ($fileinfo->isDir() ? 'rmdir' : 'unlink');
$action($fileinfo->getRealPath());
}
return rmdir($path);
}
if (file_exists($path)) {
return unlink($path);
}
return false;
}
}