Sponsored Content
The Lounge What is on Your Mind? (Preprint) Human Cyber Consciousness - The Next Frontier Post 303012452 by Neo on Monday 5th of February 2018 12:51:43 AM
Old 02-05-2018
(Preprint) Human Cyber Consciousness - The Next Frontier

Preprint available at Amazon (Publication date: May 31, 2018):

Preprint Cancelled. See this update.

Quote:
Abstract:

This short introduction to human cyber consciousness is the first book in a new series on cybersecurity that will present a uniquely modern approach to cyberspace situational awareness and human cyber consciousness. This approach can be applied to many cyber domains including cyber security, cyber warfare, information security and cyber operations in general. At a high level this introduction will help the reader understand that cyberspace can be modeled, virtualized and simulated in a way that permits us to view near real-time cyberspace activity with the naked eye. When we virtualize cyberspace in 3D we can observe, orient, travel, research, and work in a virtual world which represents real cyber objects and their relationship to other objects. For purposes of virtualization in this brief introduction, cyberspace consists of objects, generally represented as cyber objects (vertices) and relationships (edges) between cyber objects in graphs. These objects may be enriched by the fusion or addition of data and information to provide a virtual representation for sectors of cyberspace which can be traversed in both space and time. Prototyping this approach with actual commercial web server session activity information has shown that higher degrees of cyber situational awareness can be achieved as objects are increasingly enriched by the fusion of data and information from multiple sensors and sources, objectified and rendered into a 3D visualization. Hence, in this approach to cybersecurity cyberspace can be virtualized and simulated; and this virtualization can be visualized with the naked eye, so cyberspace can be traveled, explored, and operationalized by humans. This is simply a short introduction. Additional details will follow in this mini-series.
These 2 Users Gave Thanks to Neo For This Post:
 

4 More Discussions You Might Find Interesting

1. What is on Your Mind?

The Human Brain project

A global group of scientists are spending the next ten years and a billion dollars to try and develop a computer simulation of the brain: https://www.humanbrainproject.eu/ I always found it fascinating that the brain can understand itself. This almost sounds like in a few years the computer... (0 Replies)
Discussion started by: figaro
0 Replies

2. What is on Your Mind?

Cyber wall? just for me?

I do have a question about the great cyber wall of certain countries, like the UK for example. For years I just fetched once a week a public podcast that recently answered "notukerror", by chance I read just this weekend on slashdot about this topic. Does this mean the efforts enhanced by the EME... (4 Replies)
Discussion started by: 1in10
4 Replies

3. What is on Your Mind?

Virtualized Cyberspace, Cyberspace Consciousness and Simulation Theory - What Do You Think?

What do you think? Read this: Virtualized Cyberspace, Cyberspace Consciousness and Simulation Theory and comment below.... Are we in a computer simulation? Yes or No? Thanks! (0 Replies)
Discussion started by: Neo
0 Replies

4. What is on Your Mind?

Human Cyber Consciousness: The Next Frontier in Cybersecurity

FYI, I am planning to release the first book in a new mini-series the end of May: Pre-Order Cancelled. See this update. (Cyberspace Situational Awareness Book 1) https://www.unix.com/members/1-albums215-picture844.jpg If anyone want to write a short book for this mini-series, or... (3 Replies)
Discussion started by: Neo
3 Replies
Frontier::Client(3pm)					User Contributed Perl Documentation				     Frontier::Client(3pm)

NAME
Frontier::Client - issue Frontier XML RPC requests to a server SYNOPSIS
use Frontier::Client; $server = Frontier::Client->new( I<OPTIONS> ); $result = $server->call($method, @args); $boolean = $server->boolean($value); $date_time = $server->date_time($value); $base64 = $server->base64($value); $value = $boolean->value; $value = $date_time->value; $value = $base64->value; DESCRIPTION
Frontier::Client is an XML-RPC client over HTTP. Frontier::Client instances are used to make calls to XML-RPC servers and as shortcuts for creating XML-RPC special data types. METHODS
new( OPTIONS ) Returns a new instance of Frontier::Client and associates it with an XML-RPC server at a URL. OPTIONS may be a list of key, value pairs or a hash containing the following parameters: url The URL of the server. This parameter is required. For example: $server = Frontier::Client->new( 'url' => 'http://betty.userland.com/RPC2' ); proxy A URL of a proxy to forward XML-RPC calls through. encoding The XML encoding to be specified in the XML declaration of outgoing RPC requests. Incoming results may have a different encoding specified; XML::Parser will convert incoming data to UTF-8. The default outgoing encoding is none, which uses XML 1.0's default of UTF-8. For example: $server = Frontier::Client->new( 'url' => 'http://betty.userland.com/RPC2', 'encoding' => 'ISO-8859-1' ); use_objects If set to a non-zero value will convert incoming <i4>, <float>, and <string> values to objects instead of scalars. See int(), float(), and string() below for more details. debug If set to a non-zero value will print the encoded XML request and the XML response received. call($method, @args) Forward a procedure call to the server, either returning the value returned by the procedure or failing with exception. `$method' is the name of the server method, and `@args' is a list of arguments to pass. Arguments may be Perl hashes, arrays, scalar values, or the XML-RPC special data types below. boolean( $value ) date_time( $value ) base64( $base64 ) The methods `"boolean()"', `"date_time()"', and `"base64()"' create and return XML-RPC-specific datatypes that can be passed to `"call()"'. Results from servers may also contain these datatypes. The corresponding package names (for use with `"ref()"', for example) are `"Frontier::RPC2::Boolean"', `"Frontier::RPC2::DateTime::ISO8601"', and `"Frontier::RPC2::Base64"'. The value of boolean, date/time, and base64 data can be set or returned using the `"value()"' method. For example: # To set a value: $a_boolean->value(1); # To retrieve a value $base64 = $base64_xml_rpc_data->value(); Note: `"base64()"' does not encode or decode base64 data for you, you must use MIME::Base64 or similar module for that. int( 42 ); float( 3.14159 ); string( "Foo" ); By default, you may pass ordinary Perl values (scalars) to be encoded. RPC2 automatically converts them to XML-RPC types if they look like an integer, float, or as a string. This assumption causes problems when you want to pass a string that looks like "0096", RPC2 will convert that to an <i4> because it looks like an integer. With these methods, you could now create a string object like this: $part_num = $server->string("0096"); and be confident that it will be passed as an XML-RPC string. You can change and retrieve values from objects using value() as described above. SEE ALSO
perl(1), Frontier::RPC2(3) <http://www.scripting.com/frontier5/xml/code/rpc.html> AUTHOR
Ken MacLeod <ken@bitsko.slc.ut.us> perl v5.10.1 2002-08-03 Frontier::Client(3pm)
All times are GMT -4. The time now is 07:38 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy