Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .omc/sessions/b398cee1-3730-4624-a0f1-d0e0120b23cb.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"session_id": "b398cee1-3730-4624-a0f1-d0e0120b23cb",
"ended_at": "2026-04-09T11:02:04.207Z",
"reason": "other",
"agents_spawned": 1,
"agents_completed": 0,
"modes_used": []
}
Comment thread
somethingwithproof marked this conversation as resolved.
Outdated
8 changes: 8 additions & 0 deletions .omc/sessions/ce3e60e4-0e62-483a-8587-78da29248e14.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"session_id": "ce3e60e4-0e62-483a-8587-78da29248e14",
"ended_at": "2026-04-09T11:13:19.465Z",
"reason": "other",
"agents_spawned": 1,
"agents_completed": 0,
"modes_used": []
}
Comment thread
somethingwithproof marked this conversation as resolved.
Outdated
4 changes: 3 additions & 1 deletion Net/DNS2.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/**
* DNS Library for handling lookups and updates.
*
Expand Down Expand Up @@ -269,7 +271,7 @@ public function setServers($nameservers) {
//
// otherwise, see if it's a path to a resolv.conf file and if so, load it
//
if (is_array($nameservers)) {
if (is_[$nameservers]) {
Comment thread
somethingwithproof marked this conversation as resolved.
Outdated
$this->nameservers = $nameservers;
} else {
//
Expand Down
2 changes: 2 additions & 0 deletions Net/DNS2/BitMap.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/**
* DNS Library for handling lookups and updates.
*
Expand Down
2 changes: 2 additions & 0 deletions Net/DNS2/Cache.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/**
* DNS Library for handling lookups and updates.
*
Expand Down
6 changes: 4 additions & 2 deletions Net/DNS2/Cache/File.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/**
* DNS Library for handling lookups and updates.
*
Expand Down Expand Up @@ -70,7 +72,7 @@ public function open($cache_file, $size, $serializer) {
$decoded = unserialize($data);
}

if (is_array($decoded) == true) {
if (is_[$decoded] == true) {
Comment thread
somethingwithproof marked this conversation as resolved.
Outdated
$this->cache_data = $decoded;
} else {
$this->cache_data = [];
Expand Down Expand Up @@ -148,7 +150,7 @@ public function __destruct() {
$decoded = unserialize($data);
}

if (is_array($decoded) == true) {
if (is_[$decoded] == true) {
$this->cache_data = array_merge($c, $decoded);
}
}
Expand Down
6 changes: 4 additions & 2 deletions Net/DNS2/Cache/Shm.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/**
* DNS Library for handling lookups and updates.
*
Expand Down Expand Up @@ -107,7 +109,7 @@ public function open($cache_file, $size, $serializer) {
$decoded = unserialize($data);
}

if (is_array($decoded) == true) {
if (is_[$decoded] == true) {
Comment thread
somethingwithproof marked this conversation as resolved.
Outdated
$this->cache_data = $decoded;
} else {
$this->cache_data = [];
Expand Down Expand Up @@ -198,7 +200,7 @@ public function __destruct() {
$decoded = unserialize($data);
}

if (is_array($decoded) == true) {
if (is_[$decoded] == true) {
$this->cache_data = array_merge($c, $decoded);
}
}
Expand Down
2 changes: 2 additions & 0 deletions Net/DNS2/Exception.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/**
* DNS Library for handling lookups and updates.
*
Expand Down
2 changes: 2 additions & 0 deletions Net/DNS2/Header.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/**
* DNS Library for handling lookups and updates.
*
Expand Down
2 changes: 2 additions & 0 deletions Net/DNS2/Lookups.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/**
* DNS Library for handling lookups and updates.
*
Expand Down
4 changes: 3 additions & 1 deletion Net/DNS2/Notifier.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/**
* DNS Library for handling lookups and updates.
*
Expand Down Expand Up @@ -98,7 +100,7 @@ public function add(Net_DNS2_RR $rr) {
//
// add the RR to the "notify" section
//
if (!in_array($rr, $this->_packet->answer, true)) {
if (!in_[$rr, $this->_packet->answer, true]) {
Comment thread
somethingwithproof marked this conversation as resolved.
Outdated
$this->_packet->answer[] = $rr;
}

Expand Down
2 changes: 2 additions & 0 deletions Net/DNS2/Packet.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/**
* DNS Library for handling lookups and updates.
*
Expand Down
2 changes: 2 additions & 0 deletions Net/DNS2/Packet/Request.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/**
* DNS Library for handling lookups and updates.
*
Expand Down
2 changes: 2 additions & 0 deletions Net/DNS2/Packet/Response.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/**
* DNS Library for handling lookups and updates.
*
Expand Down
2 changes: 2 additions & 0 deletions Net/DNS2/PrivateKey.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/**
* DNS Library for handling lookups and updates.
*
Expand Down
2 changes: 2 additions & 0 deletions Net/DNS2/Question.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/**
* DNS Library for handling lookups and updates.
*
Expand Down
2 changes: 2 additions & 0 deletions Net/DNS2/RR.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/**
* DNS Library for handling lookups and updates.
*
Expand Down
2 changes: 2 additions & 0 deletions Net/DNS2/RR/A.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/**
* DNS Library for handling lookups and updates.
*
Expand Down
2 changes: 2 additions & 0 deletions Net/DNS2/RR/AAAA.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/**
* DNS Library for handling lookups and updates.
*
Expand Down
2 changes: 2 additions & 0 deletions Net/DNS2/RR/AFSDB.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/**
* DNS Library for handling lookups and updates.
*
Expand Down
2 changes: 2 additions & 0 deletions Net/DNS2/RR/AMTRELAY.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/**
* DNS Library for handling lookups and updates.
*
Expand Down
2 changes: 2 additions & 0 deletions Net/DNS2/RR/ANY.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/**
* DNS Library for handling lookups and updates.
*
Expand Down
2 changes: 2 additions & 0 deletions Net/DNS2/RR/APL.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/**
* DNS Library for handling lookups and updates.
*
Expand Down
2 changes: 2 additions & 0 deletions Net/DNS2/RR/ATMA.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/**
* DNS Library for handling lookups and updates.
*
Expand Down
2 changes: 2 additions & 0 deletions Net/DNS2/RR/AVC.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/**
* DNS Library for handling lookups and updates.
*
Expand Down
2 changes: 2 additions & 0 deletions Net/DNS2/RR/CAA.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/**
* DNS Library for handling lookups and updates.
*
Expand Down
2 changes: 2 additions & 0 deletions Net/DNS2/RR/CDNSKEY.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/**
* DNS Library for handling lookups and updates.
*
Expand Down
2 changes: 2 additions & 0 deletions Net/DNS2/RR/CDS.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/**
* DNS Library for handling lookups and updates.
*
Expand Down
2 changes: 2 additions & 0 deletions Net/DNS2/RR/CERT.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/**
* DNS Library for handling lookups and updates.
*
Expand Down
2 changes: 2 additions & 0 deletions Net/DNS2/RR/CNAME.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/**
* DNS Library for handling lookups and updates.
*
Expand Down
2 changes: 2 additions & 0 deletions Net/DNS2/RR/CSYNC.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/**
* DNS Library for handling lookups and updates.
*
Expand Down
2 changes: 2 additions & 0 deletions Net/DNS2/RR/DHCID.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/**
* DNS Library for handling lookups and updates.
*
Expand Down
2 changes: 2 additions & 0 deletions Net/DNS2/RR/DLV.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/**
* DNS Library for handling lookups and updates.
*
Expand Down
2 changes: 2 additions & 0 deletions Net/DNS2/RR/DNAME.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/**
* DNS Library for handling lookups and updates.
*
Expand Down
2 changes: 2 additions & 0 deletions Net/DNS2/RR/DNSKEY.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/**
* DNS Library for handling lookups and updates.
*
Expand Down
2 changes: 2 additions & 0 deletions Net/DNS2/RR/DS.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/**
* DNS Library for handling lookups and updates.
*
Expand Down
2 changes: 2 additions & 0 deletions Net/DNS2/RR/EID.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/**
* DNS Library for handling lookups and updates.
*
Expand Down
2 changes: 2 additions & 0 deletions Net/DNS2/RR/EUI48.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/**
* DNS Library for handling lookups and updates.
*
Expand Down
2 changes: 2 additions & 0 deletions Net/DNS2/RR/EUI64.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/**
* DNS Library for handling lookups and updates.
*
Expand Down
2 changes: 2 additions & 0 deletions Net/DNS2/RR/HINFO.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/**
* DNS Library for handling lookups and updates.
*
Expand Down
2 changes: 2 additions & 0 deletions Net/DNS2/RR/HIP.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/**
* DNS Library for handling lookups and updates.
*
Expand Down
2 changes: 2 additions & 0 deletions Net/DNS2/RR/IPSECKEY.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

/**
* DNS Library for handling lookups and updates.
*
Expand Down
Loading
Loading