RetroShare certs

2151 Replies, 332348 Views

Hey! How does it work? Can't really find anyone xD

ABAuFlmWH9iEj067B05OZcQxAxSybQKe1ycX41B4oZODCt43AFuOHAEHU3hlbm9pcpMGdQCowMI8kgag4LxDwjwEA+xBBQ==
(30 Nov 2021, 23:13 )kor faeron Wrote: Some certs. I get them as follow: go to Network tab, right click on friends field, export. Using the exported xml file, form certs.txt with this code (c#, .net 6)
Show Content
Also, I think you could directly share your exported friends xml file (just forum not allowed xml).
I think you can just rename file to be like cert.xml.txt
(10 Dec 2021, 04:09 )sxenoir Wrote:
(30 Nov 2021, 23:13 )kor faeron Wrote: Some certs. I get them as follow: go to Network tab, right click on friends field, export. Using the exported xml file, form certs.txt with this code (c#, .net 6)
Show Content
Also, I think you could directly share your exported friends xml file (just forum not allowed xml).
I think you can just rename file to be like cert.xml.txt
Tried with friends.txt (than you can change to xml by yourself), but it didn't work
(10 Dec 2021, 04:08 )sxenoir Wrote: Hey! How does it work? Can't really find anyone xD

ABAuFlmWH9iEj067B05OZcQxAxSybQKe1ycX41B4oZODCt43AFuOHAEHU3hlbm9pcpMGdQCowMI8kgag4LxDwjwEA+xBBQ==

It's a clear net cert, not Tor.
ABCTUdZMTSJupVITWNJRI4RLAxSSY+kPrHhWdyu4DlNQtZs+K+deHAEIcGN1c2VyNDSQRAAAAAImlm1henFqcXVsdWJibjRtcHFy
c2hyeWt2aWFncmNxeXU1NnNqaHF1d215am5nc3dwcWNucmx0eHlkLm9uaW9ukwYBAAB/Hv4EAyMFhQ==

Using Tor
CQEGAcGWxsBNBGG873oBCAC2Tif/m8j5unTYFTuD4fwhG/dTrwJR4aT2By17iIW0
vvvwsb7iVhPDmfHRlG662Tjtjpl4qRW7SdHZxLJbYwFerqm3AZxz+b/cXPT53Mjg
eG5j1J29kCy+US8DGssSEvczeAoOpPXQ+xUa6FLLVn5Fs4bp0NuNZG/cw4USu0xK
sVbe7c1Xj8tt2s4bSBSfR8OQ0F+SKzL6WyYMVmFIjc5fSsHDqvlA163YedJ90JNg
sdJMw6vBffsf7H51zs9CltB2Ph+i85rMARKzwo6yENimsThuQOqSX+QAV0V1wKNF
v8XCzTfM020B7AyX7lv2hMmGQMREZp33Z5G19yrKfY81ABEBAAHNIkNpbm9uIChH
ZW5lcmF0ZWQgYnkgUmV0cm9TaGFyZSkgPD7CwF8EEwECABMFAmG873oJECfJJDKp
+mLrAhkBAABTIAgAtgC/PpeSmhbO9aSqUTtAIAVQ+E/6luOuueZ8+fVmd2o/RIAI
vQAM0mJDQs7KQLOqsMyLt8Be1EecVtDMOpw09//icNYMKAzJm0iPWXBbAbPBui4F
1Sz6j5taOWYR5lJhd5axTX35uEFyldMeXOQiA2nyVCdGFNo2985TiVu5gk4GkeaB
HyE7rFtbuWdGNzBvIYUSTzqYQwmHX/ynveEbcraact2PxRlzW4Pve4CJ0S0mgY5x
xV7ALQbPUgE9UUNauH6lA3Pf8obG0h/UO3G/paN4iGKN4qOc+fb4PzN+On8NLDe8
2O69V9EUiGmBgUCSYI9K4p/7crj3Xh5/fGhs/QhDYWlsb3VrNHNmejdsYnU3eG9p
bGU0dnpqbnRjc294cTN0NnkydDRnZW40dTJmZjdoeHJmNXhxcWQub25pb246OTg3
OAYDdG9yBRAQg0+EACtwHg1NE6xPcN1NBwMP42g=
(This post was last modified: 19 Dec 2021, 02:06 by cinon.)
All certificates of the long format were parsed from the first page to the last



Download my attachments, rename them to .xml, go to network, right click inside the network list -> import friendlist -> select the .xml file and you are done.



Here's a greasemonkey script I made to extract all the certs:






Code:
// ==UserScript==
// @name    likera retroshare
// @version  1
// @grant    none
// @include  https://www.likera.com/forum/mybb/Thread-RetroShare-certs*
// @run-at  document-end
// ==/UserScript==

var x = document.getElementsByClassName("post_body scaleimages");

var z = 0;

var certs = '';

for(let j = 0; j < x.length; j++){
  var position = x[j].textContent.search("CQEGA");
  //console.log(z);
  z++;
  if(position != -1){ // found something :)
    var parts = x[j].textContent.split('\n\n') // try to isolate cert form comments
    for (let i = 0; i < parts.length; i++) {
      if(parts[i].search("CQEGA") != -1){
        var cert = parts[i].replace(/\n/g, ''); // remove new lines
        //certs += '<pgpID><sslID certificate="' + cert + '"/></pgpID>\n'; // xml format
        certs += cert + '\n';
      }
    }
  }
}
console.log(certs)




On firefox you open the console with Ctrl + Shift + J, then open every single page of the thread and you'll have all the certs in the console (or just download my attachments).






Make sure you are using Tor. If not, Go to Preferences -> General -> Untick Auto Login -> Do another login but this time configure it to go through Tor.






People, STOP USING THE SHORT FORMAT! There's no way to automate the parsing of those. Go to Preferences -> Node -> Certificate -> Untick short format -> Repaste your certificate here in a new reply. Don't put any comments.


Attached Files
.txt   likera_certs_2021_12_17_1.txt (Size: 181.72 KB / Downloads: 242)
.txt   likera_certs_2021_12_17_2.txt (Size: 190.47 KB / Downloads: 176)
.txt   likera_certs_2021_12_17_3.txt (Size: 95.48 KB / Downloads: 204)
(This post was last modified: 19 Dec 2021, 02:09 by cinon.)
My tor stopped working
Now some users need to use bridges
When using the bridge, everything works again.
(This post was last modified: 18 Dec 2021, 13:08 by SissyBimbo555.)
CQEGAcGYxsBNBGGy+3ABCAC3sKGbY9YN0mnEUPF003ciduT807m+PxElfN0OxW+F
1wZ0Gr83uk2RfAbmsf8LC5uAd4KziEEjErLO3e6vZBKhg5e0NpRSNirX4FrIilOr
dgd0CxPJVLTpJRkpGB9bsYZLyiNsxqzLYHb0y8cIW6V8cOFS6bhUx0PO84HHojZP
Yeoun9f+RAl4dV401eozLSfdJsLJrf/5IK0PjYzuMlqGoTn3hnTYOguho2qTXNwZ
6IIAGCiMFxpUlpPB/XocONidIBq+iIujt6waoTwDZal8TS2iHTjfvw0GEZ8kNxnc
y37GCK6l0yZiY6hWocE3GkxRboVPDtc+hHC8AMYxcTMLABEBAAHNJG5vdF95b3Ug
KEdlbmVyYXRlZCBieSBSZXRyb1NoYXJlKSA8PsLAXwQTAQIAEwUCYbL7cAkQM3S0
dAG7VBECGQEAAPO5B/4xS3M0hD3mo+wdPl3rCh0qMHPvVoy3qaBLV2wKTOiCcJOS
Retroshare is saying it's 'unable to parse XML file!' and then no certificates are added.

This is from the files in your post.

(17 Dec 2021, 23:41 )cinon Wrote: All certificates of the long format were parsed from the first page to the last



Download my attachments, rename them to .xml, go to network, right click inside the network list -> import friendlist -> select the .xml file and you are done.



Here's a greasemonkey script I made to extract all the certs:






Code:
// ==UserScript==
// @name    likera retroshare
// @version  1
// @grant    none
// @include  https://www.likera.com/forum/mybb/Thread-RetroShare-certs*
// @run-at  document-end
// ==/UserScript==

var x = document.getElementsByClassName("post_body scaleimages");

var z = 0;

var certs = '';

for(let j = 0; j < x.length; j++){
  var position = x[j].textContent.search("CQEGA");
  //console.log(z);
  z++;
  if(position != -1){ // found something :)
    var parts = x[j].textContent.split('\n\n') // try to isolate cert form comments
    for (let i = 0; i < parts.length; i++) {
      if(parts[i].search("CQEGA") != -1){
        var cert = parts[i].replace(/\n/g, ''); // remove new lines
        //certs += '<pgpID><sslID certificate="' + cert + '"/></pgpID>\n'; // xml format
        certs += cert + '\n';
      }
    }
  }
}
console.log(certs)




On firefox you open the console with Ctrl + Shift + J, then open every single page of the thread and you'll have all the certs in the console (or just download my attachments).






Make sure you are using Tor. If not, Go to Preferences -> General -> Untick Auto Login -> Do another login but this time configure it to go through Tor.






People, STOP USING THE SHORT FORMAT! There's no way to automate the parsing of those. Go to Preferences -> Node -> Certificate -> Untick short format -> Repaste your certificate here in a new reply. Don't put any comments.

Possibly Related Threads…
Thread Author Replies Views Last Post
  RetroShare Like Ra 677 166,365 19 Jan 2026, 20:49
Last Post: dhf7b8g
  How to join retroshare forums? bambixoxo 5 3,210 24 Nov 2025, 00:52
Last Post: Like Ra