Navigation

    OpenBullet

    OpenBullet

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Popular
    • Users
    • Groups
    • Awards
    1. Home
    2. MadmanDev
    M
    • Profile
    • Following
    • Followers
    • Topics
    • Posts
    • Best
    • Groups

    MadmanDev

    @MadmanDev

    0
    Reputation
    34
    Posts
    63
    Profile views
    0
    Followers
    1
    Following
    Joined Last Online

    MadmanDev Follow

    Posts made by MadmanDev

    • RE: is it possible to upload file using openbullet

      @Ruri thanks. for getting hex data of file we will use this ?

      UTILITY File "foo.wav" Read -> VAR "data" 
      
      UTILITY Conversion ASCII HEX "<data>" -> VAR "hex data"
      
      posted in Questions
      M
      MadmanDev
    • is it possible to upload file using openbullet

      for example i want to upload file to a website nammed xyz for the equilant code in c# is

      class Program
          {
              static void Main(string[] args) {
      
                  // HttpClient is normally created once, then used for all message sending
                  HttpClient client = new HttpClient();
                  client.BaseAddress = new Uri("https://xyz.com/v2/");
                  client.DefaultRequestHeaders.Add("authorization", "YOUR-API-TOKEN");
      
                  string jsonResult = SendFile(client, @"/path/to/foo.wav").Result;
                  System.Console.WriteLine(jsonResult);
              }
      
      
              private static async Task SendFile(HttpClient client, string filePath) {
                  try {
                      HttpRequestMessage request = new HttpRequestMessage(HttpMethod.Post, "upload");
                      request.Headers.Add("Transer-Encoding", "chunked");
      
                      var fileReader = System.IO.File.OpenRead(filePath);
                      var streamContent = new StreamContent(fileReader);
                      request.Content = streamContent;
      
                      HttpResponseMessage response = await client.SendAsync(request);
                      return await response.Content.ReadAsStringAsync();
                  }
                  catch (Exception ex) {
                      System.Console.WriteLine($"Exception: {ex.Message}");
                      throw;
                  }
              }
      
          }
      
      }
      

      can we do this using request block in openbullet

      posted in Questions
      M
      MadmanDev
    • RE: [Plugin] Updater for OB

      alr thanks OP for contribution

      posted in Mods
      M
      MadmanDev
    • RE: [Plugin] Updater for OB

      @ShiyaVivala it keeps old DB and settings or just make a fresh OpenBullet ?

      posted in Mods
      M
      MadmanDev
    • RE: [HELP ] Regex to get email:pass from random data

      Thanks worked after a little tweaking

      posted in Questions
      M
      MadmanDev
    • [HELP ] Regex to get email:pass from random data

      the closest i can get was regexr.com/50gj7
      i know to match emails only i can use

      (\b[A-Za-z0-9._%+-][email protected][A-Za-z0-9.-]+\.[A-Za-z]{2,4}\b)
      

      but cant get email pass

      posted in Questions
      M
      MadmanDev
    • RE: how to open openbullet Database in another software

      @Ruri
      damn

      posted in Questions
      M
      MadmanDev
    • how to open openbullet Database in another software

      so i have my old openbullet database file thats around 200 MB and openbullet dont openup when i put that file in new version of openbullet so i tried to browse that manually using a softwar5e called DATABASE BROWSER FOR SQLite upon opening it this pops up.
      https://imgur.com/GrpXvYU
      anyway to browse the database @Ruri ?
      EDIT:
      using LDB explorer i found out the record "hits" is not getting retrieved im getting this error
      Unable to cast object of type 'LiteDB.EmptyPage' to type 'LiteDB.HeaderPage'.

      posted in Questions
      M
      MadmanDev
    • RE: Parsing data from complex Html

      TY for replies solved

      posted in Questions
      M
      MadmanDev