You can kill the oracle session by issuing the below command
SQL> alter system kill session 'sid,serial#';
To find the sid and serial#, you can use the follwoing
select * from v$session
or
select sid, serial#, osuser, program
from v$session;
To kill the session the immediately, you can use this
SQL> alter system kill session 'sid,serial#' immediate;