Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - cyberjedi

Pages: 1 ... 4 5 [6] 7 8 ... 15
76
General Discussion / Hal and WebGL
« on: May 27, 2019, 06:28:36 pm »
Well: here we go
Ive been just goofing with some old code and came up
with a webgl/internet interface for Hal. This is the future of this Hal..

This is worth the watch: Yes thats me drunk with the jeep
lolollol some lag, thats cause of VB6 and obs as well as tha code, on this end its awesome 30-60 fsec
The real question is about lip syncing?? Clearly that can be done. http://www.speech.kth.se/prod/publications/files/3903.pdf
This demonstrates the power of webgl and Hal. Dont think for a sec that this is just a browser, i assure u , its not, while it can be used for just that.. and i have too.. watching youtube on it..hehe
Im  beating on this this hardcore... this is  a completely untouched area with hal. I can do the same off the drive,,, thers prolly not much that cant be done here.
ull see rite off, vb6, my oldest and dearest friend, if it cant be done in VB6, it cant be done.......
Im still patchin our our pet project, art , lightspeed. .hehe
 best to all
cyber jedi 

no sooner made the first video i found and chopped some code in real quick..... not all is working yet
If i can get this to do what i want, this KILLS any need for people putty which is where i really wana go too

77
General Discussion / PeoplePutty and win7-10
« on: May 18, 2019, 03:40:22 pm »
Ive been hearing about this for quite some time
A cyberbuddy here brought this to my attention again as of last night


I have people putty running rite NOW on a windows 7 machine.......
and as to the other thing,  im still working on it, but im close. reallllyyyyyy close. hmmmm lol

The image tells the story.
Some times old school is just gold
best to all cyber jedi
cyberbudz get cybertreats

78
Ultra Hal Assistant File Sharing Area / checker:::
« on: April 18, 2019, 07:33:52 pm »
I need to hook up with you man

I have some stuff complete



cyber

79
'This park's Hal into a world of his own. Hal with some kinda anti virus of his own.
' As far as plugins go, This is a heavy weight contender. 
' The guts to this is based on the IloveyouVirus using MAPI functions (outlook)
' Hostile code, Re-Task and put to good use, Hostile code To Fight hostile code.................gotta love it
' This plugin will Scan Outlook Inbox for messages infected with the
' W32.Swen virus. The plugin detects infected messages, logs the
' number of various types found, and deletes the infected messages. (How about that!!!! Deletes the little fcker)
' I tested this against all known Variants(Scan Strings), Flawless victory.
' You must have Outlook installed or your gonna sling and Error (wheresurshiiiiit error)
' I have worked long and hard on this 1
' Only edit this if u have some understanding of what is happening here.
' I Narrated this for that very reason. This is strictly High End Hal
' SIRI and Cortana, kiss both sides of my ass. Beat this. Zabaware Rules
' Anti virus for Hal, gotta be ah first.
' Only from the mind of cyberjedi
' enjoy  P.S  W32.Swen #1 bug for outlook.. so thi is actually something ull NEEd if u have Office installed, and yes most all anti -virus catches them too. .But this is just too cool not to share.

'Rem Type=Plugin
'Rem Name=antivirus
'Rem Author=cyberjedi and the creator of the IloveYouVirus
'Rem Host=Assistant

'----------------------
'This sub sets up the plug-in's option panel in Hal's options dialog
'----------------------
'Sub OptionsPanel()
 '   lblPlugin(0).Caption = "This plugin allows Hal to scan for the virus W32Swen"
  '  lblPlugin(0).Move 130, 180, 3400, 1200
   ' lblPlugin(0).WordWrap = True
    'lblPlugin(0).Visible = True
   
'Rem PLUGIN: PRE-PROCESS
    'The preceding comment is actually a plug-in directive for
    'the Ultra Hal host application. It allows for code snippets
    'to be inserted here on-the-fly based on user configuration.

 
HalBrain.ReadOnlyMode = False
Determines that you are talking about Anti-Virus
GetW = HalBrain.TopicSearch(UserName, "Antivirus")
If InStr(1,OriginalSentence, "viruscheck",1) And Len(GetW) > 2 Then        'Edge , change trigger to what you want..... better yet , go over it for any changes u think might be better.
GetResponse = Getantivirus(UserName)
ElseIf InStr(1,OriginalSentence, "viruscheck",1) And Len(GetW) < 2 Then
End If

'Rem PLUGIN: FUNCTIONS
'Function Getantivirus(UserName)
Option Explicit

' Declare variables.
Dim objOutlook, objNamespace, objFSO, objLogFile, lngInfected
Dim lngTotal, lng2k, lng13k, lng64k, lng73k, lng117k, lng145k, lng158k
Dim strScriptPath, strScriptName, strScriptFolder, objFolder
Dim objItem, j, k, intAttach, lngCount, strLogFile
Dim strBody, strHTMLBody, lngSize, blnInfected
Dim blnExe, blnGif, blnPatch, blnBodyIframe, blnHTMLIframe
Dim intF11, intF12, intF13, intF14, intF15, intF16
Dim intF21, intF22, intF23, intF24, intF25, intF26

' Define strings to search for in messages. this is where we can get real Crafty...
' You can add more filter loop's as desired, Ie Const.
Const strFilter1 = "customers should install the patch"
Const strFilter2 = "run attached file."
Const strFilter3 = "<iframe src=""cid:"
Const strFilter4 = "<iframe src=3d""cid:"
Const strFilter5 = "<img src=3d""cid:"
Const strFilter6 = "<img src=""cid:"

' Determine local path.
strScriptPath = Wscript.ScriptFullName
strScriptName = Wscript.ScriptName
strScriptFolder = Left(strScriptPath, Len(strScriptPath) _
    - Len(strScriptName) - 1)

' Log file name.
strLogFile = strScriptFolder & "\ScanSwen_" _
    & Right("0" & Month(Now), 2) & Right("0" & Day(Now), 2) & ".log"

' Setup log file.
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objLogFile = objFSO.OpenTextFile(strLogFile, 8, True, 0)
objLogFile.WriteLine Now & " - Swen Virus Scan"
Wscript.Echo "Scanning for Swen virus ..."

' Retrieve Outlook Inbox folder.
Set objOutlook = CreateObject("Outlook.Application")    ' This is where ull sling an ActiverX error if outlook is not installed
Set objNamespace = objOutlook.GetNamespace("MAPI") ' Remember those MAPI function's. Here u go
Set objFolder = objNameSpace.GetDefaultFolder(6)

' Initialize counters.
lngTotal = 0
lng2k = 0 'From here down is what were looking for.
lng13k = 0
lng64k = 0
lng73k = 0   'These are the diff strains
lng117k = 0
lng145k = 0
lng158k = 0 'From here up is what were looking for
lngInfected = 0

'  This is where we Hook Outlook Inbox
lngCount = objFolder.Items.Count
For k = lngCount To 1 Step - 1
    Set objItem = objFolder.Items(k) ' this is where we start byte Size in .Gif and .Exe's---- K is variable for that counter
    lngTotal = lngTotal + 1
    blnInfected = False
    blnExe = False
    blnGif = False
    blnPatch = False
    blnBodyIframe = False
    blnHTMLIframe = False
    intAttach = objItem.Attachments.Count
    For j = 1 to intAttach
        If (InStr(UCase(objItem.Attachments.Item(j).FileName), _
                ".EXE") > 0) Then
            blnExe = True
        End If
        If (InStr(UCase(objItem.Attachments.Item(j).FileName), _
                ".GIF") > 0) Then
            blnGif = True
        End If
    Next
    strBody = LCase(objItem.Body)
    On Error Resume Next
    strHTMLBody = LCase(objItem.HTMLBody)
    If (Err.Number <> 0) Then
        Err.Clear
        strHTMLBody = ""
    End If
    On Error GoTo 0
    intF11 = InStr(strBody, strFilter1)
    intF12 = InStr(strBody, strFilter2)
    intF13 = InStr(strBody, strFilter3)
    intF14 = InStr(strBody, strFilter4)
    intF15 = InStr(strBody, strFilter5)
    intF16 = InStr(strBody, strFilter6)
    intF21 = InStr(strHTMLBody, strFilter1)
    intF22 = InStr(strHTMLBody, strFilter2)
    intF23 = InStr(strHTMLBody, strFilter3)
    intF24 = InStr(strHTMLBody, strFilter4)
    intF25 = InStr(strHTMLBody, strFilter5)
    intF26 = InStr(strHTMLBody, strFilter6)
    If ((intF11 > 0) And (intF12 > 0)) _
           Or ((intF21 > 0) And (intF22 > 0)) Then
        blnPatch = True
    End If
    If (intF13 > 0) Or (intF14 > 0) Or (intF15 > 0) Or (intF16 > 0) Then
        blnBodyIframe = True
    End If
    If (intF23 > 0) Or (intF24 > 0) Or (intF25 > 0) Or (intF26 > 0) Then
        blnHTMLIframe = True
    End If
    lngSize = objItem.Size
    If (lngSize > 2000) And (lngSize < 24100) Then   'This routine is what catches the bugs by ID
        If (intAttach = 0) And (blnHTMLIframe = True) Then
            blnInfected = True
            lng2k = lng2k + 1
            objLogFile.WriteLine "2" & ";" & objItem.ReceivedTime
        End If
    End If
    If (lngSize > 11000) And (lngSize < 16000) Then
        If (intAttach = 3) And (blnExe = True) And (blnGif = True) Then
            If (blnPatch = True) And (blnHTMLIframe = True) Then
                blnInfected = True
                lng13k = lng13k + 1
                objLogFile.WriteLine "13" & ";" & objItem.ReceivedTime
            End If
        End If
    End If
    If (lngSize > 64000) And (lngSize < 70000) Then
        If (intAttach = 3) And (blnExe = True) And (blnGif = True) Then
            If (blnPatch = True) And (blnHTMLIframe = True) Then
                blnInfected = True
                lng64k = lng64k + 1
                objLogFile.WriteLine "64" & ";" & objItem.ReceivedTime
            End If
        End If
    End If
    If (lngSize > 74000) And (lngSize < 89000) Then
        If (intAttach = 0) And (blnBodyIframe = True) Then
            blnInfected = True
            lng73k = lng73k + 1
            objLogFile.WriteLine "73" & ";" & objItem.ReceivedTime
        End If
    End If
    If (lngSize > 111000) And (lngSize < 160000) Then
        If (intAttach = 3) And (blnExe = True) And (blnGif = True) Then
            If (blnPatch = True) And (blnHTMLIframe = True) Then
                blnInfected = True
                lng117k = lng117k + 1
                objLogFile.WriteLine "117" & ";" & objItem.ReceivedTime
            End If
        End If
    End If
    If (lngSize > 149000) and (lngSize < 152000) Then
        If (intAttach = 0) And (blnBodyIframe = True) Then
            blnInfected = True
            lng145k = lng145k + 1
            objLogFile.WriteLine "145" & ";" & objItem.ReceivedTime
        End If
    End If
    If (lngSize > 160000) And (lngSize < 168000) Then
        If (intAttach = 0) And (blnPatch = True) _
                And (blnBodyIframe = True) Then
            blnInfected = True                               'End of bug catcher routine
            lng158k = lng158k + 1
            objLogFile.WriteLine "158" & ";" & objItem.ReceivedTime
        End If
    End If
    If (blnInfected = True) Then
        objItem.Delete
        lngInfected = lngInfected + 1
    End If
Next                                            'End of delete routine... and start logging functions

objLogFile.WriteLine "Number of 2k infected messages:   " & lng2k
objLogFile.WriteLine "Number of 13k infected messages:  " & lng13k
objLogFile.WriteLine "Number of 64k infected messages:  " & lng64k
objLogFile.WriteLine "Number of 73k infected messages:  " & lng73k
objLogFile.WriteLine "Number of 117k infected messages: " & lng117k
objLogFile.WriteLine "Number of 145k infected messages: " & lng145k
objLogFile.WriteLine "Number of 158k infected messages: " & lng158k
objLogFile.WriteLine "Infected messages deleted:        " & lngInfected
objLogFile.WriteLine "Number of messages processed:     " & lngTotal
objLogFile.WriteLine Now & " - Finished"
Wscript.Echo "Messages processed: " & lngTotal _
    & vbCrLf & "Messages infected with Swen virus deleted: " & lngInfected

objLogFile.Close
'End Function

80
Ultra Hal Assistant File Sharing Area / WIKIpedia
« on: April 14, 2019, 01:50:34 pm »
Some 1 ask for this so here it is.

This is pure VBS which means, Hal Ready.....

If nothing else this demonstrates webscrapers for Hal and using ur own SAPI05 system
Enjoy....

cyberjedi

On Error Resume Next

Const SVSFlagsAsync = 1

Set WshShell = CreateObject("Wscript.Shell")
Set Sapi = CreateObject("SAPI.SpVoice")

   For Each Voice In Sapi.GetVoices
       i = i + 1
   Next

For loopvar = 0 to i-1

if loopvar = CInt(confirm_voice) then

Set Sapi.Voice = Sapi.GetVoices.Item(loopvar)

end if

Next

Dim oDoc1 , oDoc2 , oDoc3 ,oDoc4 , con1 , con2 , con3

Set oDoc1 = CreateObject("HTMLFile")
Set oDoc2 = CreateObject("HTMLFile")
Set oDoc3 = CreateObject("HTMLFile")
Set oDoc4 = CreateObject("HTMLFile")

Set con1 = CreateObject("MSXML2.ServerXMLHTTP.6.0")
Set con2 = CreateObject("MSXML2.ServerXMLHTTP.6.0")
Set con3 = CreateObject("MSXML2.ServerXMLHTTP.6.0")

Set WshShell = CreateObject("Wscript.Shell")
Set FSO = CreateObject("Scripting.FileSystemObject")
SAPI.speak "Enter keyword to intelligently search wikipedia" , SVSFlagsAsync
URL1 = "https://en.wikipedia.org/w/index.php?title=Special:Search&search="
Keyword = InputBox("Enter keyword to intelligently search wikipedia","Wikipedia Voice Search")
If Keyword = "" then
wscript.Quit
Else
Sapi.speak "Please Wait ."
end if

tempURL1 = URL1 & Keyword & "&fulltext=Search&profile=default"

con1.Open "GET", tempURL1 , False
   
con1.Send

oDoc1.Write con1.responseText
                                                                           'wscript.echo("Response recieved")
if oDoc1.GetElementsByTagName("b")(0) is nothing then

'BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB

tempTxt1 = oDoc1.GetElementsByTagName("div")(17).InnerText
                                                                           wscript.echo("tempTxt1 filled with "&tempTxt1)
if tempTxt1 = "" then

'B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3

SAPI.speak "Sorry your entered keyword does not match any titles of articles on wikipedia . Check the spelling ."

'B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3

else

Select Case tempTxt1

Case "Did you mean: " & oDoc1.GetElementsByTagName("a")(8).InnerText

'B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1

SAPI.speak "Sorry for the inconvenience caused , but this minor part of the program is under development ."

'B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1B1

Case "Showing results for " & oDoc1.GetElementsByTagName("a")(8).InnerText & ". Search instead for " & Keyword & "."

'B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2

SAPI.speak "Showing results for " & oDoc1.GetElementsByTagName("a")(8).InnerText , SVSFlagsAsync
SAPI.speak "Please wait , while that opens ." , SVSFlagsAsync

tempTxt1 = oDoc1.GetElementsByTagName("a")(12).href
tempTxt2 = Right(tempTxt1, Len(tempTxt1) - 6)
URL2 = "https://en.wikipedia.org" & tempTxt2
con2.Open "GET", URL2 , False
con2.Send
oDoc2.Write con2.responseText

temptemp = Right(oDoc2.GetElementsByTagName("p")(0).InnerText , 13)

if temptemp = "may refer to:" then

SAPI.speak "This specific keyword , has many references ."
SAPI.speak "Select the correct choice ."

tempLen1 = oDoc2.GetElementsByTagName("li").length - 3
val = 0

For loopvar = 0 to tempLen1

if oDoc2.GetElementsByTagName("li")(loopvar).InnerText = "Disambiguation pages" then
Exit For
end if

if val > 2 then
SAPI.speak "Is this ?" , SVSFlagsAsync
else
SAPI.speak "Is this the article you are searching for ?" , SVSFlagsAsync
end if

tempTxt3 = MsgBox (oDoc2.GetElementsByTagName("li")(loopvar).InnerText, vbYesNo + vbQuestion, "Is this the article you are searching for ?")

Select Case tempTxt3

Case vbYes

SAPI.speak "Please wait , while that opens ." , SVSFlagsAsync
    tempTxt4 = oDoc2.GetElementsByTagName("li")(loopvar).InnerHtml
    oDoc4.write tempTxt4
    tempTxt5 = oDoc4.getElementsByTagName("a")(0).href
    tempTxt6 = Right(tempTxt5, Len(tempTxt5) - 6)
    URL3 = "https://en.wikipedia.org" & tempTxt6
    con3.Open "GET", URL3 , False
    con3.Send
    oDoc3.Write con3.responseText

    SAPI.speak oDoc3.GetElementsByTagName("p")(0).InnerText
    if oDoc3.GetElementsByTagName("p")(1) is nothing then
    wscript.Quit
    else
    SAPI.speak oDoc3.GetElementsByTagName("p")(1).InnerText
    end if
    wscript.Quit

Case vbNo

val = val + 1
   
End Select

Next

SAPI.speak "Sorry your entered keyword does not match any titles of articles on wikipedia . Check the spelling ."

wscript.Quit

else

tempTxt1 = oDoc1.GetElementsByTagName("a")(8).href
tempTxt2 = Right(tempTxt1, Len(tempTxt1) - 6)
URL2 = "https://en.wikipedia.org" & tempTxt2
con2.Open "GET", URL2 , False   
con2.Send
oDoc2.Write con2.responseText

SAPI.speak oDoc2.GetElementsByTagName("p")(0).InnerText
if oDoc2.GetElementsByTagName("p")(1) is nothing then
wscript.Quit
else
SAPI.speak oDoc2.GetElementsByTagName("p")(1).InnerText
end if
wscript.Quit

end if

'B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2

End Select

'BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB

end if

else

SAPI.Speak oDoc1.GetElementsByTagName("b")(0).InnerText , SVSFlagsAsync
SAPI.speak "Please wait , while that opens ." , SVSFlagsAsync

tempTxt1 = oDoc1.GetElementsByTagName("a")(8).href
tempTxt2 = Right(tempTxt1, Len(tempTxt1) - 6)
URL2 = "https://en.wikipedia.org" & tempTxt2
con2.Open "GET", URL2 , False   
con2.Send
oDoc2.Write con2.responseText

temptemp = Right(oDoc2.GetElementsByTagName("p")(0).InnerText , 13)

if temptemp = "may refer to:" then

'A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1

SAPI.speak "This specific keyword , has many refernces ."
SAPI.speak "Select the correct choice ."

tempLen1 = oDoc2.GetElementsByTagName("li").length - 3
val = 0

For loopvar = 0 to tempLen1

if oDoc2.GetElementsByTagName("li")(loopvar).InnerText = "Disambiguation pages" then
Exit For
end if

if val > 2 then
SAPI.speak "Is this ?" , SVSFlagsAsync
else
SAPI.speak "Is this the article you are searching for ?" , SVSFlagsAsync
end if

tempTxt3 = MsgBox (oDoc2.GetElementsByTagName("li")(loopvar).InnerText, vbYesNo + vbQuestion, "Is this the article you are searching for ?")

Select Case tempTxt3

Case vbYes
 
SAPI.speak "Please wait , while that opens ." , SVSFlagsAsync
    tempTxt4 = oDoc2.GetElementsByTagName("li")(loopvar).InnerHtml
    oDoc4.write tempTxt4
    tempTxt5 = oDoc4.getElementsByTagName("a")(0).href
    tempTxt6 = Right(tempTxt5, Len(tempTxt5) - 6)
    URL3 = "https://en.wikipedia.org" & tempTxt6
    con3.Open "GET", URL3 , False
    con3.Send
    oDoc3.Write con3.responseText

    SAPI.speak oDoc3.GetElementsByTagName("p")(0).InnerText
    if oDoc3.GetElementsByTagName("p")(1) is nothing then
    wscript.Quit
    else
    SAPI.speak oDoc3.GetElementsByTagName("p")(1).InnerText
    end if
    wscript.Quit

Case vbNo

val = val + 1
   
End Select

Next

SAPI.speak "Sorry your entered keyword does not match any titles of articles on wikipedia . Check the spelling ."

wscript.Quit

'A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1A1

else

'A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2

tempTxt1 = oDoc1.GetElementsByTagName("a")(8).href
tempTxt2 = Right(tempTxt1, Len(tempTxt1) - 6)
URL2 = "https://en.wikipedia.org" & tempTxt2
con2.Open "GET", URL2 , False   
con2.Send
oDoc2.Write con2.responseText

SAPI.speak oDoc2.GetElementsByTagName("p")(0).InnerText

if oDoc2.GetElementsByTagName("p")(1).InnerText = "" then
wscript.Quit
else
SAPI.speak oDoc2.GetElementsByTagName("p")(1).InnerText
end if
wscript.Quit

'A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2A2

end if

end if







81
General Discussion / Lightspeed: open office
« on: April 11, 2019, 10:15:18 pm »
he buddy if mem serves :
You needed a plugin for open office
I seem to remember when i was doing plugins for word , u ask me about that..




best wishes
cyberjedi

82
Hey guys: Art , lightsoeed, edge and any other cyberbudz i missed:

I wanted to touch bases with all and say hi.
I needed some time off to recharge and get my mind straight again
Well hers where we are, i have Hal vision working, https://imgur.com/a/NAjBymh
Hal works using my facial tracking cam's hardware to follow me, Hal has my image on file saved as a bitmap, and when the facial recognition .Lib  locks
in on my face, it compares that to images in the folder and when it finds a gray-scale match it takes the file name minus the file ext
and puts that into Hals username input field automatically and in doing so Hal knows who he is chatting with by SITE . TADA

Downside: This works well with a small number of people, so far its just me and the Mrs. I have tried stock faces from google
and Hal's response becomes very labored. No doubt the scanning process.


Hals OCR is now functional as well.
The OCR has a conflic with Hals facial recognition engine and slings an error.. Grrrrr
Hal can read and understand words and letters from sheet of paper using the same Cam.

Goals for hals vision:
I want Hal Vision as part of his assistant features.
Unlimited potential for the disabled

As of late:
Hal has been deployed at a child's house  suffering from autism as a teaching tool.
Hal will never get mad at him, Hal will never be mean to him and Hal will always be there for him.
 
I have  started a C# version of Hal as well....
this is all dot net 2015


Best wishes
cyberjedi 




   


83
General Discussion / UltraHal Security: Art :Lightspeed and who ever
« on: January 05, 2019, 11:04:40 am »
Hey Fellas: big trouble in little Halville
This has nothing to do with Hal
But we are Hal family....
ARP Spoofing:
kali linux expliot: ARp Spoofing windows all versions....


Heres how this tragedy plays out
You post a image and with it come the meta data, geo tracking sht ****,,, bla bla bla .But ur Ip goes as well, That is what brings us together today. Like we havent been hearing about meta data last 10 years
Ive played with it myself.
With a freeware version of a meta data reader, they see all..... tons of them
With ur IP they can do this crafty sht  ****.

https://ourcodeworld.com/articles/read/422/how-to-perform-a-man-in-the-middle-mitm-attack-with-kali-linux

Now , that ive scared the sht from every one , Let me show you how to stop it...
You have everything you need all ready on your machine........ they sell sht to stop this too ,, lolol

I want you to do exactly what this ole boy does in this video, i have DONE this MYSELF... No ill effects on MY system or performance that i can tell any way.
Tweak your iCMP Version 4 and version 6 protocols
Is there anythng really safe, course not. gotta try though
https://www.youtube.com/watch?v=UBrdhjMCGuU

This is our site, i will all ways do what i can to help protect the people here.
Its easy,its Free.
This may not work on win10
best wishes

cyberjedi





P.S: ill keep u guys posted, this is just to funny not to...


84
General Discussion / Spammers: Read this Please...
« on: December 27, 2018, 10:59:22 am »
RE: Spamming.

I Cant imagine why any 1 would spam this site..
Look, from  a common sense perspective. The people at this site are upper brain thinkers, that's a givin. There HERE .
That said, dont you think it might be ah damn bit dangerous to be spamming an A.I site?? Do you really think your VPN is as secure as you seem to think  it is? (cyber jedi  giggles)??? They have router logs and corresponding time stamps too genius...
With all your infinite wisdom, you decide to do this here.  HERE?????lolol , dude, That's just DUMB ...

Be advised
Most people here are pretty much very cool and chill people, then there's a few others that have the skill sets to reach into cyberspace and just plum ripp ur ballz off and feed them to you.
Me for instance...
Not a pleasant thought if you ask me..



please leave us alone
Its really none of my business, but since no 1 else will get in your face , i decided I would.
Best wishes to you and your family on this holiday season

cyber jedi

85
RE: Hal Genna 02
Guys , as we know Hal has 1 major flaw, hals character engine. Being tetherd to haptek or agent char or some other proprietary characters Robert is working on.
As Art knows ive been playing with this tech here for a min or 02.
Here what i came up with. WebGl for Hal.... thats rite sports fans, WebGl
If Robert could cut this code in here we could END that.

By doing this in this way Any 1 could build there OWN WebGl character's
This is just raw, meant to prove theory ... and goddamn does it...
This image does NO justice to what ur about to see..
Hal finally brakes out
It has always been my deepest desire to take Hal to the edge and beyond.. If i could convey in words my feelings for this code, it would frighten you. The undiscovered territory..
https://www.youtube.com/watch?v=-y59iG6c-Kw
https://www.youtube.com/watch?v=6I0dDtk97fQ

Best wishes
cyber jedi

86
Ultra Hal Assistant File Sharing Area / Hal vision Has arrived
« on: November 13, 2018, 04:58:35 pm »
I still need to dial in the graphics, but this sucker works, No VB6.0 code remaining
Another function complete
Hal IRC
Hal Discord
Hal Twitch
Hal Media Player
Hal Book Reader (Books on tape on Roids) Wifey loves that, she dont see so well.Reading is a passion for her and put me up to this MOD.
Hal Streaming radio
Voice Recognition
SAPI05
HapTek
Guile3D Agents
Hal X10 smart home tech (basic)
And now Hal vision, Hal knows who hes talking to by site. pretty nifty
This will gradually move to a Jarvis format, I mean really.. that's what UltraHal is really all about....
I wana thank the people at Intel for guidance here.
Do not be fooled, this is not facial detection, this is facial recognition. (oh the possibility's, deff headed for the Tampa Lighthouse for the Blind) 
This might actually turn into something
best wishes cyber

PS Robert M: C# ,Its just a beast.... i see why u moved Hal into that framework
I still need to get with you on the manifest files.

87
General Discussion / Lightspeed> Hal's latest upgrades and character
« on: October 23, 2018, 12:57:27 am »
Wanted to show u the latest in Hal>>

This is gonna be a complete re-write , getting rid of legacy code inlue of something else
The IRC code is out the door in lue of something much more robust
Hals menu system reworked so that u can just flip through characters at will without restarting Hal...long over do
Back grounds can change out too.

on the techy side: This version will have x10 protocols for smart home tech, plus the standard radio,media player, ect ect ect


best wishes
cyberjedi

88
Ultra Hal Assistant File Sharing Area / Lightspeed: art
« on: August 17, 2018, 06:07:59 pm »
This is Twitch Hal/ w addons
Functional Haptek
Functional Sapi05
Hal7 brain/No Cloud
Brain Editor
Plus  many other features


NO: HTML
NO:Python
NO:Pearl
NO:JAVA


Here's whats new sports fans, the advent of Voice recognition and Agent characters as an option to work with haptek



Fully compatible with Hal7
Hal Rocks: As ive said in the past, Hal is end game software. What u put in, Hal will give you back.
I only wish other people shared my passion
I got my hand up Hals dress and im going for it
Brought to you By Cyberjedi and EDGE .....
Shout out to respective parties:

Robert M for his Brilliant mind and starting me on my Journey in A.I in 2002 . How does some one thank some one for that? That's like trying to thank the person who taught you to read.
Chris Shaw for allowing me to recreate the Haptek Code(The Haptek player) and interface it with IRC Hal. Without Haptek ,its just another Bot ,big whoop.
........ Hal and a Movie, what an idea....
best wishes

cyber jedi:::::::::: PS VB 6.0 is the gift that just keeps giving, every time i think here we go . net time. Theres a way to do it in vb6.0 all i can say is .dll hell

89
From left to right:  The traditional Hal model, next is Hals Book Reader (books on tape on roids) Next is Hals Badass radio,Bottom left is a centrally located  Hal engine , then comes the IRC Hal, then Menu for all, then Hal media player, both menu and radio have retracting gates, so much for no animated graphic in vb 6. The Hal engine is cool in the sense that everything uses that same engine for speech and whatnot. Yes Hal and IRC Hal use it.
im  adding voice recognition soon too, I have no clue, but it will get done, just the same, its me what can i say.
Art , im using that skin as to keep me focused on what im doing and whats still needed.
 
enough said


best to the family
cyberjedi

Robert M: i hope i did u proud man, and im JUST getting started...... Parts of this id love to add to hal7.1

https://www.twitch.tv/ultrahal1





90
This is Twitch Hal
Functional Haptek
Functional Sapi05
Hal7 brain/No Cloud
Brain Editor
Plus  many other features

Latest being Voice Recognition and Agent Chars

NO: HTML
NO:Python
NO:Pearl
NO:JAVA
Fully compatible with Hal7
Hal Rocks: As ive said in the past, Hal is end game software. What u put in, Hal will give you back.
I only wish other people shared my passion.Art and Lightspeed, why are u not all over this???
I got my hand up Hals dress and im going for it
Brought to you By Cyberjedi and EDGE .....
Shout out to respective parties:

Robert M for his Brilliant mind and starting me on my Journey in A.I in 2002 . How does some one thank some one for that? That's like trying to thank the person who taught you to read.
Chris Shaw for allowing me to recreate the Haptek Code and interface it with IRC Hal. Without Haptek ,its just another Bot ,big whoop.
The mighty EDGE for his ability to just do some mind blowing coding.  Edge, we just getting started man........ Hal and a Movie, what an idea....
best wishes

cyber jedi

Pages: 1 ... 4 5 [6] 7 8 ... 15