| 1234567891011121314151617181920212223 |
-
- using dodohold.core;
- using Microsoft.AspNetCore.Mvc;
- using Sayaka.Common;
- using System.Text.Json;
- using System.Text.RegularExpressions;
- using System.Web;
- namespace molilian.core
- {
- public partial class TestParseCore
- {
- public static string _test_oaid = "C712574A37194CC8AA2C94F4E94BF632069e05173327fe9168cc3829a5a22820";
- public static bool InWhitelist(string ip, string oaid)
- {
- if (_test_oaid.Equals(oaid, StringComparison.OrdinalIgnoreCase)) return true;
- if (!string.IsNullOrEmpty(ip) && ip.StartsWith("127.0.0")) return true;
- return false;
- }
- }
- }
|