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
    
  
  
    
  | <html> | |
| <head> | |
| </head> | |
| <body> | |
| <div id="wrapper"> | |
| <div id="sidebar-wrapper"> | |
| <ul class="sidebar-nav"> | 
  
    
      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
    
  
  
    
  | public class DNI | |
| { | |
| public string Generate() | |
| { | |
| int numDNI = GetRandomNumber(); | |
| char charDNI = GetCharDNI(numDNI % 23); | |
| return numDNI.ToString().PadLeft(8,'0') + "-" + charDNI; | |
| } | 
  
    
      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
    
  
  
    
  | using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| namespace Eventos | |
| { | |
| public delegate void WorkPerformedHandler(int hours, int type); | 
  
    
      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
    
  
  
    
  | using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| namespace Eventos | |
| { | |
| public delegate int WorkPerformedHandler(int hours, int type); | 
  
    
      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
    
  
  
    
  | using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| namespace Eventos | |
| { | |
| class Program | |
| { | 
  
    
      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
    
  
  
    
  | using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using NominaWF.Utils.Extension; | |
| namespace NominaWF.Utils | |
| { | |
| public static class SystemTime | |
| { | 
  
    
      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
    
  
  
    
  | using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| namespace NominaWF.Utils.BasicMethods | |
| { | |
| static class Basic | |
| { | |
| internal static Func<object, double> ToDouble = (Obj) => | 
  
    
      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
    
  
  
    
  | using System; | |
| using System.Configuration; | |
| using System.Security.Cryptography; | |
| using System.Text; | |
| namespace SoapServices | |
| { | |
| /// | |
| /// Example class for creating a Password Digest Header in .Net | |
| /// | 
  
    
      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/python | |
| import requests | |
| import os | |
| import subprocess | |
| import psutil | |
| import time | |
| import sys | |
| # A quick and dirty exploit of ManageEngine Desktop Central StatusUpdate Arbitrary File Upload | |
| # Based off - https://www.exploit-db.com/exploits/34594/ | 
OlderNewer
        