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/python3 | |
| ''' | |
| author: ceres-c | |
| usage: ./frida-extract-keystore.py | |
| Once the keystore(s) have been exported you have to convert them to PKCS12 using keytool | |
| ''' | |
| import frida, sys, time | 
  
    
      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.Globalization; | |
| using System.IO; | |
| using System.Security.Cryptography; | |
| using System.Text; | |
| namespace AESEncryption{ | |
| internal static 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
    
  
  
    
  | @viewModel DotvvmWorkerServices.ViewModels.DefaultViewModel, DotvvmWorkerServices | |
| @masterPage Views/MasterPage.dotmaster | |
| <dot:Content ContentPlaceHolderID="MainContent"> | |
| <div ID="main-div"> | |
| <h1 style="margin-top: 30%;" class="cover-heading">Weather Information for Lagos, Nigeria.</h1> | |
| <dot:GridView DataSource="{value: WeatherInfos}" class="table"> | |
| <Columns> | |
| <dot:GridViewTextColumn ValueBinding="{value: DateTime}" HeaderText="Date / Time"/> | |
| <dot:GridViewTextColumn ValueBinding="{value: Weather}" HeaderText="Weather" /> | 
  
    
      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 DotVVM.Framework.ViewModel; | |
| using DotvvmWorkerServices.Models; | |
| using Microsoft.Extensions.Caching.Memory; | |
| using Microsoft.Extensions.Logging; | |
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Threading.Tasks; | 
  
    
      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; | |
| namespace DotvvmWorkerServices.Models | |
| { | |
| public class WeatherInfoDto | |
| { | |
| public DateTime DateTime { get; set; } | |
| public string Weather { get; set; } | |
| public string Description { get; set; } | |
| public double Temperature { get; set; } | 
  
    
      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 DotvvmWorkerServices.Models; | |
| using DotvvmWorkerServices.Services; | |
| using Microsoft.Extensions.Caching.Memory; | |
| using Microsoft.Extensions.Hosting; | |
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Threading; | |
| using System.Threading.Tasks; | 
  
    
      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
    
  
  
    
  | namespace DotvvmWorkerServices | |
| { | |
| public class AppConfig | |
| { | |
| public const string WEATHER_INFOS_KEY = "WeatherInfosIdList"; | |
| } | |
| } | 
  
    
      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
    
  
  
    
  | services.AddHttpClient<WeatherInfoService>(client => | |
| { | |
| client.BaseAddress = new Uri("https://community-open-weather-map.p.rapidapi.com"); | |
| client.DefaultRequestHeaders.Add("X-RapidAPI-Host", "community-open-weather-map.p.rapidapi.com"); | |
| client.DefaultRequestHeaders.Add("X-RapidAPI-Key", "YOUR - KEY - HERE"); | |
| }); | 
  
    
      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 DotvvmWorkerServices.Models; | |
| using Microsoft.Extensions.Logging; | |
| using Newtonsoft.Json; | |
| using System; | |
| using System.Net.Http; | |
| using System.Threading.Tasks; | |
| namespace DotvvmWorkerServices.Services | |
| { | 
  
    
      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.Collections.Generic; | |
| namespace DotvvmWorkerServices.Models | |
| { | |
| public partial class WeatherInfo | |
| { | |
| public Coord Coord { get; set; } | |
| public List<Weather> Weather { get; set; } | |
| public string Base { get; set; } | 
NewerOlder