mirror of https://gitlab.com/bashrc2/epicyon
Missing argument
parent
55fc741046
commit
0b29fcb48c
|
@ -272,7 +272,7 @@ def daemon_http_get(self) -> None:
|
|||
# php
|
||||
if 'index.php' in self.path:
|
||||
print('GET HTTP Attempt to access PHP file ' + self.path)
|
||||
http_404(self)
|
||||
http_404(self, 145)
|
||||
return
|
||||
|
||||
if contains_invalid_chars(str(self.headers)):
|
||||
|
|
|
@ -109,7 +109,7 @@ def daemon_http_post(self) -> None:
|
|||
# php
|
||||
if 'index.php' in self.path:
|
||||
print('POST HTTP Attempt to access PHP file ' + self.path)
|
||||
http_404(self)
|
||||
http_404(self, 146)
|
||||
return
|
||||
|
||||
calling_domain = self.server.domain_full
|
||||
|
|
Loading…
Reference in New Issue